I am building a site with JA Zite and Mijoshop.
When I enter the product details information into a product, it displays the text at 130% size. why? i want it 100%. well ok, i track it down using Firebug, and it tracks back to a line of code in the template.css file in JAT3.
body.fs1 #ja-wrapper { font-size: 80%; }
body.fs2 #ja-wrapper { font-size: 90%; }
body.fs3 #ja-wrapper { font-size: 100%; }
body.fs4 #ja-wrapper { font-size: 110%; }
body.fs5 #ja-wrapper { font-size: 120%; }
body.fs6 #ja-wrapper { font-size: 130%; }
it turns out the body text for a typical product is getting laid out using that last line.
why would this be?
I could just change that 130% to 100% but that doesnt seem like the right way to do it
what is the correct way to change this so that the text in the products comes out at 100% please?