MyBB Community Forums

Full Version: Changing Element Style
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
element.style {
    color: #FFFFFF;
}

I need to change the color of it

Cant find it anywhere.

Link to the site
http://www.monetizationforums.com/index.php

Picture of problem
[Image: postj.png]

If you mean trow area then; Go to: ACP > Themes > Select your theme > global.css and find;

.trow1{
.........
}

.trow2{
.........
}

and if you mean "the line that separates two columns" then;
Go to: ACP > Themes > Select your theme > global.css and find;

.tborder{
.........
}
(2010-12-18, 08:44 AM)Yaldaram Wrote: [ -> ]If you mean trow area then; Go to: ACP > Themes > Select your theme > global.css and find;

.trow1{
.........
}

.trow2{
.........
}

and if you mean "the line that separates two columns" then;
Go to: ACP > Themes > Select your theme > global.css and find;

.tborder{
.........
}

No I'm taking about the time of the post.

12-13-2010 (04:53 PM) this part. You can't see it cause it's white.
Go to: ACP > Themes > Select your theme > global.css > find the following;

table {
	color: #000000;
	font-family: Verdana, Arial, Sans-Serif;
	font-size: 13px;
}

and change it to the following;

table {
	color: #FFFFFF;
	font-family: Verdana, Arial, Sans-Serif;
	font-size: 13px;
}

Save stylesheet, DONE! Smile
(2010-12-18, 04:32 PM)Yaldaram Wrote: [ -> ]Go to: ACP > Themes > Select your theme > global.css > find the following;

table {
	color: #000000;
	font-family: Verdana, Arial, Sans-Serif;
	font-size: 13px;
}

and change it to the following;

table {
	color: #FFFFFF;
	font-family: Verdana, Arial, Sans-Serif;
	font-size: 13px;
}

Save stylesheet, DONE! Smile


...That would change my posts and threads count into white. Why would I do that? The time is not effected by that value anyways.
You should specify what exactly you want to do..
(2010-12-18, 06:39 PM)Yaldaram Wrote: [ -> ]You should specify what exactly you want to do..

This is how it looks as of now on my forum.
[Image: inv1.png]


This is it highlighted
[Image: inv2.png]


You can see it's the time after the date. I need to change the color of the time so it shows up on a white background.