New Install but wont take <H1>

I have a fresh install and my product description is not liking my HTML tags :frowning:





This is what I have



```php

Invader DA45 - BLACK


Suregrip Invader plate with the all new double action trucks and premium cushions. This plate will take derby to a new level.


Black Powder Coated


Sold in pairs.

```

Notice when you view it, its not taking the format :-(
[url]http://www.derbysmack.com/invader-da45-black.html[/url]

Everything is okay except for the

tag. Use the editor to do what you want with it.

Why wont the

tag work ? It worked on my 2.0.15.

From a pure web design stand point, it doesn’t make much sense to use an h1 tag within the description. You can still style the text anyway you want without using an h1 tag.

[quote name=‘The Tool’]Everything is okay except for the

tag. Use the editor to do what you want with it.[/QUOTE]



When I use the editor to make something “HEADING 1” it works on the back end, but not the front end.

[quote name=‘nathand’]When I use the editor to make something “HEADING 1” it works on the back end, but not the front end.[/QUOTE]



Why do you insist on using “

”? Use something like Your_text_here and be done with it.

[quote name=‘The Tool’]Why do you insist on using “

”? Use something like Your_text_here and be done with it.[/QUOTE]



Because I would like to use the

tag like the editor suggest.



Something is over powering it. I checked my CSS file to see if there was an issue or conflict, but did not see on.

In one of your style sheets you have:


body, h1, h2, h3, h4, h5, h6 {
font:11px Verdana,Geneva,Arial,Helvetica,sans-serif;
}




I can’t tell which sheet because either your style sheets are wierd or my Firebug is messed up.



You could try something like:


#content_block_description h1 {
font-size:18px;
}




Or:


.cm-tabs-content h1 {
font-size:18px;
}




Brandon

[quote name=‘nathand’]Because I would like to use the

tag like the editor suggest.



Something is over powering it. I checked my CSS file to see if there was an issue or conflict, but did not see on.[/QUOTE]



If that is what the editor suggested then apparently it’s been updated and I would say this is a minor bug but a bug nonetheless.

Your site use weboptimizer, so I don’t know if it can affect the css styling.

I’ll disable WEBO so you can check it out. I just moved the site to a new dedicated server, so WEBO is not needed as much :slight_smile:





Thanks for this hint on the CSS, I’ll check it out.