PDA

View Full Version : How to change the color of this text


Zeus1221
07-06-2014, 02:31 AM
Does anyone know how I can change the color of this text ?

I'm sure it's something in the template, I'm just not sure what exactly.


https://vborg.vbsupport.ru/external/2014/07/62.png


The orange text, I wanna change it to another color.

Dave
07-06-2014, 07:51 AM
That's the global link color.
If you don't want to change the global link color, you can do the following:

.lastposttitle .threadtitle{
color: #hexcolorhere;
}

Add it to the additional.css CSS template.

Zeus1221
07-15-2014, 07:21 AM
I'm not exactly sure how to do that successfully, could you please supply a step by step manual ?

Thanks

ForceHSS
07-15-2014, 07:32 AM
search for additional.css template and add the code to the bottom of it

Zeus1221
07-16-2014, 03:29 AM
Works great, thanks for the help.

Another question I have about my template is when people arn't logged in the template is all messed up. Here's an example;

https://vborg.vbsupport.ru/external/2014/07/36.png

Zeus1221
07-16-2014, 03:30 AM
Works great, thanks for the help.

Another question I have about my template is when people arn't logged in the template is all messed up. Here's an example;

https://vborg.vbsupport.ru/external/2014/07/36.png

As you can see the navigation bar and what not is all over the place.

Zeus1221
07-16-2014, 07:39 AM
Okay, I did that ^ And it still didn't change.

ForceHSS
07-16-2014, 08:41 AM
.lastposttitle .threadtitle{
color: #FF0000;
}

Works for me. Can add it for you if you need help

Dave
07-16-2014, 09:40 AM
Change to:
.lastposttitle .threadtitle{
color: #FF0000 !important;
}

Dave
07-17-2014, 08:37 AM
Not sure what's causing the navtabs issue, maybe colliding CSS templates?

The following seems to fix it though, just set a big width to the navtabs class.
.navtabs{
width: 500px;
}

.navtabs li, .navtabs li.selected{
margin-top: -4px;
}

Zeus1221
07-17-2014, 09:03 AM
Where do I add that code in ?

Dave
07-17-2014, 09:22 AM
The additional.css template.
But in case since it only happens to guests, you have to make sure that the CSS is only loaded for guests.

Zeus1221
07-17-2014, 09:36 AM
How do I make sure that the CSS is only loaded for guests ? Sorry for all the questions.

Zeus1221
07-19-2014, 06:32 PM
anyone?