The forum of the forums
Welcome on the Forumotion Support Forum.

To take full advantage of everything offered by our forum, please log in if you are already a member or join our community if you're not yet....



Create a free forum like this one.

Color of line separating posts

View previous topic View next topic Go down

Solved Color of line separating posts

Post by buddylee0927 on January 25th 2012, 8:13 am

Here is the original thread I jumped into: http://help.forumotion.com/t103619-avatar-help-profile-pic

They last info I received before the thread was locked stated that I had the color of the line set as #000000(Black)
which would make sense for me not seeing the line but I have checked all of the #000000 and even changed them to
a bright yellow to help distinguish where it was. I have not had any luck in locating the correct color setting.

Here is a link to my forum to show where it looks like my post blend together in the black areas.

http://beaudogs.the-talk.net/t21-food-sign-up-for-2012

buddylee0927
Forumotion Member

Posts: 60
Language: English
Points: 54
Join date: 2012-01-14

Back to top Go down

Solved Re: Color of line separating posts

Post by buddylee0927 on January 26th 2012, 6:53 am

Bump

buddylee0927
Forumotion Member

Posts: 60
Language: English
Points: 54
Join date: 2012-01-14

Back to top Go down

Solved Re: Color of line separating posts

Post by Nera. on January 26th 2012, 7:10 am

Hi,

I'm not understanding the problem really : /
What do you want to change, the yellow around your forum to some else? Can you explain a bit?

----------------------------



Nera.
Manager
Manager

Female
Posts: 6419
Age: 28
Language: Croatian, Italian, German, English
Location: Split, Croatia
Points: 9366
Join date: 2010-09-01

http://www.webartzforum.com/

Back to top Go down

Solved Re: Color of line separating posts

Post by buddylee0927 on January 27th 2012, 6:16 am

Nera. wrote:Hi,

I'm not understanding the problem really : /
What do you want to change, the yellow around your forum to some else? Can you explain a bit?


If you look at the link I posted, it's a current thread that I was testing in. It look as if all 3 of my posts are just one big continuation. Is there not a line that separates each post? If there is I wan't to change its color because it appears to be hidden or possibly black and I can't see it.

Dose that make sense?

buddylee0927
Forumotion Member

Posts: 60
Language: English
Points: 54
Join date: 2012-01-14

Back to top Go down

Solved Re: Color of line separating posts

Post by Akkii on January 27th 2012, 6:24 am

You must edit it in css Smile

Akkii
Forumotion Member

Male
Posts: 99
Language: English
Points: 156
Join date: 2010-02-11

Back to top Go down

Solved Re: Color of line separating posts

Post by 99nour on January 27th 2012, 7:02 am

yeah I think for the line "Admin Panel > Display > Pictures&Colors > Colors > Scroll down to Table Header > Body line Color, that's the seperating line. I think.

99nour
Forumotion Member

Female
Posts: 361
Language: English
Location: Egypt
Points: 318
Join date: 2011-11-29

http://duelinguniversity.forumotion.com/

Back to top Go down

Solved Re: Color of line separating posts

Post by buddylee0927 on January 27th 2012, 7:04 am

99nour wrote:yeah I think for the line "Admin Panel > Display > Pictures&Colors > Colors > Scroll down to Table Header > Body line Color, that's the seperating line. I think.
When I change this color, the only box that changes is the surrounding border of the entire forum. Do you think it's a template issue that possibly doesn't even have the line in its structure? If it indeed does not come with one, can someone explain to me how I can add one or if it's possible?

buddylee0927
Forumotion Member

Posts: 60
Language: English
Points: 54
Join date: 2012-01-14

Back to top Go down

Solved Re: Color of line separating posts

Post by Coddy on January 27th 2012, 7:22 am

So, you can add in Javascript management:
Code:
$(function() {
$('.post').after('<hr class="hr-color">')
});


CSS Stylesheet:
Code:
hr.hr-color{
color: #color;
background-color: #color;
}


I hope I understanded the problem. Smile

Coddy
Forumotion Member

Male
Posts: 1793
Age: 17
Language: Romanian, Russian, English | HTML (+XHTML, HTML5), CSS (+CSS3), jQuery
Location: Para-para-paradise, Every time she closed here eyes...
Points: 1816
Join date: 2011-12-30

Back to top Go down

Solved Re: Color of line separating posts

Post by buddylee0927 on January 27th 2012, 7:32 am

Gassy wrote:So, you can add in Javascript management:
Code:
$(function() {
$('.post').after('<hr class="hr-color">')
});


CSS Stylesheet:
Code:
hr.hr-color{
color: #color;
background-color: #color;
}


I hope I understanded the problem. Smile


Add both?

buddylee0927
Forumotion Member

Posts: 60
Language: English
Points: 54
Join date: 2012-01-14

Back to top Go down

Solved Re: Color of line separating posts

Post by LGforum on January 27th 2012, 7:36 am

Gassy wrote:So, you can add in Javascript management:
Code:
$(function() {
$('.post').after('<hr class="hr-color">')
});


CSS Stylesheet:
Code:
hr.hr-color{
color: #color;
background-color: #color;
}


I hope I understanded the problem. Smile


You can do that with this CSS:
Code:

.post:after {
 color: #fff;
 background-color: #fff;
 height: 2px;
}


Though wouldn't it be better just to set a bottom border on the .post?

Code:

.post {
  border-bottom: 2px solid #fff;
}

LGforum
Forumotion Member

Male
Posts: 1681
Language: Plenty of them.
Location: UK
Points: 2064
Join date: 2011-03-05

http://www.avacweb.com/

Back to top Go down

Solved Re: Color of line separating posts

Post by buddylee0927 on January 27th 2012, 8:10 am

LGforum wrote:
Gassy wrote:So, you can add in Javascript management:
Code:
$(function() {
$('.post').after('<hr class="hr-color">')
});


CSS Stylesheet:
Code:
hr.hr-color{
color: #color;
background-color: #color;
}


I hope I understanded the problem. Smile


You can do that with this CSS:
Code:

.post:after {
 color: #fff;
 background-color: #fff;
 height: 2px;
}


Though wouldn't it be better just to set a bottom border on the .post?

Code:

.post {
  border-bottom: 2px solid #fff;
}


I used the bottom one and it works. Thanks for the help everyone!

buddylee0927
Forumotion Member

Posts: 60
Language: English
Points: 54
Join date: 2012-01-14

Back to top Go down

Solved Re: Color of line separating posts

Post by buddylee0927 on January 27th 2012, 8:17 am

This can be locked.

buddylee0927
Forumotion Member

Posts: 60
Language: English
Points: 54
Join date: 2012-01-14

Back to top Go down

Solved Re: Color of line separating posts

Post by Jophy on January 27th 2012, 8:38 am

Please don't double/triple post.

Your post need to be separated by 24 hours before bumping, replying or adding more information. Please use the EDIT button instead. This is your 3rd reminder about this which turns into a warning.



Topic Solved & Moved

Note: You can also help the staff member's work by EDITING your topic and marking it as solved.


Jophy
Manager
Manager

Male
Posts: 10642
Age: 16
Language: English, Tagalog
Location: Manila, Philippines
Points: 27687
Join date: 2009-08-02

Back to top Go down

View previous topic View next topic Back to top


Permissions in this forum:
You cannot reply to topics in this forum