nathand
November 3, 2010, 12:00am
#1
I have a fresh install and my product description is not liking my HTML tags
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]
thetool
November 3, 2010, 12:00am
#2
Everything is okay except for the
tag. Use the editor to do what you want with it.
adodric
November 3, 2010, 12:00am
#4
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.
nathand
November 3, 2010, 12:00am
#5
[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.
thetool
November 3, 2010, 12:00am
#6
[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.
nathand
November 4, 2010, 12:00am
#7
[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
thetool
November 4, 2010, 12:00am
#9
[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.
nathand
November 5, 2010, 12:00am
#11
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
Thanks for this hint on the CSS, Iâll check it out.