Shape 5

Joomla Free Templates => Design Control - Free => : marbaz December 03, 2013, 02:25:54 AM



: Module Color [SOLVED]
: marbaz December 03, 2013, 02:25:54 AM
Hi,
question,
i want to change the module title-color in module: bottom_row3_1
As you can see on www.testpagina.de (http://www.testpagina.de) the text is black and i want it to be white (#ffffff)

I tried to change it in the template.css but then the body content also changes in white and isnt readable anymore.

anyone can help?


: Re: Module Color
: mikenicoll December 03, 2013, 02:58:13 AM
Hello marbaz,

Add this to your custom.css

#s5_bottom_row3_area1 .s5_mod_h3 {
     color: #FFFFFF ! important;
}


-Mike


: Re: Module Color
: marbaz December 03, 2013, 03:14:29 AM
Thanks, i changed the module title color succesfull!
But, when you look at "Kontakt" module (left bottom) the text is dark, i want that text to be white)
I looked for that with firebug but shows me only the body-color and when i change that the body text of the main page is white and unreadable too..

How can i change this color without change the body-text color also?

Many thanks!

Martin


: Re: Module Color
: mikenicoll December 03, 2013, 03:23:35 AM
Hello,

Well if we look at the code here:

#s5_bottom_row3_area1 .s5_mod_h3 {
    color: #6FBB16 !important;
}

You can see that is is applying a color of green to the bottomrow3 position but only targetting the module h3 headings. So to make it target the other text you would simply just add another line below this without the H3 specification.

#s5_bottom_row3_area1 {
    color: #6FBB16 !important;
}

Firebug is a good tool for learning how to modify CSS like this. I would suggest trying it out.

-Mike


: Re: Module Color
: marbaz December 03, 2013, 03:39:16 AM
Thanks!
I will try it out!

Martin


: Re: Module Color [SOLVED]
: mikenicoll December 04, 2013, 03:22:40 AM
NP

-Mike