User loginRecent blog posts
|
H1 in style.CSS changes not being recognisedI am trying to remove/make white the background colour for h1 in the style.css for my storefront and no success. This is the line I have edited in the style.css file under "Global Styles" From To And even I have tried editing through the actual style.css file and also through the admin panel's "Edit CSS". Anyone have any suggestions?
|
SearchQuick Links |
H1 is similar to a .Title
I noticed the same thing.
What you really want to do is modify the .Title class.
In fact, I dropped the stand-alone H1 since it wasn't useful, and put it in with the .Title classes.
Going one step further, I thought it was a really handy idea to combine all of the .Title tags together (so I don't need to update. each. and. every. one.), and this is my entry for what I would consider to be the "headings":
h1, .CategoryDetail .Title, .HomeFeaturedCategories .Title, .ProductDetail .Title, .Specials .Title, .Brand .Title, .Price .Title, .CrossSell .Title
{
color: #545454;
font-size: 24px;
font-weight: bold;
margin: 0px auto 5px auto;
padding: 10px 0px 10px 0px;
text-align:center;
}
It works great.
Mark
(FlipScript)