Notice: This thread is over two years old; the information may be outdated. Please consider creating a new thread if you require free support. If you have an active SiteOrigin Premium license, you can email our premium support desk at [email protected].
Why when I put css for just an h1 tag does it change the whole page????? I just want the h1 tag styled????
h1 {
font-family: “Times New Roman”, Times, serif;
font-style: italic;
}
Hi John,
I suspect your h1 tag is incorrectly closed. Do you have a public URL where we can take a look at what’s going on? If you need to keep this URL private from other users, just select “Private Reply” on the bottom right of the comment box.
I just put it in the html code but an <h1>text</h1> is this not right?? So the css would be h1 {color: blue; etc.}John
Hi John,
Yes and the CSS also looks good. This leads me to believe that there’s another issue with the page itself which is why I need to take a look at it to assist with this issue.
OK here is the page: http://www.roadbicyclereview.com/bicycles-for-women/
This is what I have in the ATTRIBUTES: h3 {color: red;}
THIS IS ONE THE PAGE<h3>This is a heading</h3>John
Hi John,
The attribute CSS styles field only supports inline styles (as in, no selectors). You’ll need to use something like SiteOrigin CSS to add the styling. To affect only h3’s on this page you would use something like the following CSS:
Thanks for the help!