UBB.Dev
Posted By: Dslam postlist.php - 06/16/2003 7:07 AM
what css change is needed for me to change the color of the new post subject ?

I have it bold right now but my users are complaining they can't tell whats what
so I'd like to cchange the color but can't find what to change atm
Posted By: JoshPet Re: postlist.php - 06/16/2003 7:14 AM
newdarktable
newlightttable
newsubjecttable

Posted By: Dslam Re: postlist.php - 06/16/2003 7:18 AM
.newlighttable {
background: #000044;
font-weight: bold;
}
.newdarktable {
background: #000033;
font-weight: bold;

.newsubjecttable {
background: #000055 ; <!-- Used on the showflat/showthreaded screens -->
font-weight:bold ;



I want to change the link colors on postlist.php
not the table colors , just the subject link to the new post
Posted By: Dslam Re: postlist.php - 06/16/2003 7:25 AM
humm better way for me to explain it
we used to have orange icons for new post
but now there all yellow
so my members LOL don't like the change .
I went from 6.1.1 to 6.3
Posted By: JoshPet Re: postlist.php - 06/16/2003 7:37 AM
I see what you need now - to over ride the link properties for specific styles

You would add this for each class you want to alter:

.newlighttable a:link {
color: #FFFFFF;
background: none;
}
. newlighttable a:visited {
color: #FFFFFF;
background: none;
}
. newlighttable a:active {
color: #DFE6EF;
background: none;
}
. newlighttable a:hover {
color: #BCD0ED;
background: none;
text-decoration: none;
}



Do that for newdarktable and newsubjecttable as wel - alter colors as needed.
Posted By: Dslam Re: postlist.php - 06/16/2003 2:23 PM
Thank you .
that worked
© UBB.Developers