Hi,
class vmheader is used by modules Manufacturer and Featured products to display the title/header.
I want to change the style of the text, but I can't get it done. My idea was to add the following code to the CSS of the template:
#vmheader
{
font-size:1.1em;
font-weight:bold;
}
But nothing happens when I refresh. I've done some other changes in CSS files and they work well. But somehow with classes I can't get it done. When I use firebug to see the style and inheritance, the lines in my css aren't mentioned. What am I doing wrong?
Sorry for this noob question, but I found out that I'm much better with PHP than the CSS styling stuff...
with your code you are using an id and not class
to use class, try this
.vmheader
{
font-size:1.1em;
font-weight:bold;
}
more on classes in css check - http://www.w3schools.com/css/css_id_class.asp
Thnx a lot! I've seen quite a few pages at w3schools, but I think I read a little too fast...
Works like a charm!
perfect, I am glad everything worked out for you