Premium Title Text

pauline

Member
Hi All,

Just a quick question. How do I change the color of the text in the premium title. It's blue and I'd like it white.

Thanks.

Pauline
 

Attachments

Basti

Administrator
Staff member
Code:
.premium_title {
    text-shadow: 1px 1px 2px #000;
}
.premium_title a {
    color: #fff;
}
 
Last edited:

cajkan

Active Member
And as i can see from screenshot, text has some shadow you should remove that too, because would look ugly with white text and blue shadow.
 

Basti

Administrator
Staff member
Good catch, it should have black shadow to look good like top menu. I have updated my first post to include that

Also your menu hover on top should not have a white text color on white background. Text shadow should also have a slight change.
you have this in your user.css
Code:
#navigation li a:hover {
    color: #F0FFFF;
    background: #ddd url(img/bg9.png) bottom left repeat-x;
    background: #fff url(img/bg8.png)  top left repeat-x;
    background: #F0FFFF;
    border-radius: 5px;
    color:#fff;
    border: 0px solid #F0FFFF;
    text-shadow: -1px -1px 2px #000;
}
Change that to the following, that would look good
Code:
#navigation li a:hover {
    background: #F0FFFF;
    border-radius: 5px;
    color: #008FD4;
    border: 0px solid #F0FFFF;
    text-shadow: 1px 1px 2px #999;
}
 

pauline

Member
Thank guys will do that. It was the one last tiny thing I needed to fix. I changed the text by mistake but I find the only way to learn is to play with the colors so I can work out what changes what. I couldn't for the life of me work out what I had changed and how to change it back.

Pauline
 
Top