Re: Andover Modern Template Support Thread
Quote:
Originally Posted by
picaflor-azul
Add this:
Code:
#navMain ul li a{padding:0;}
to the bottom of your stylesheet.css
Thanks,
Anne
Hi Anne,
I was having a similar problem but changing to below would make the search box go to the next line again whenever you went to Home or any other Category
Code:
#navMain ul li a{padding:0;}
Changin the line below in the stylesheet seems to work, is it OK to do this?
Code:
#navMain ul li a {text-decoration: none;padding: 0em 0.5em;margin: 0;color: #fffede;white-space: nowrap;}
to
Code:
#navMain ul li a {text-decoration: none;padding: 0;margin: 0;color: #fffede;white-space: nowrap;}
Thanks!!!
Re: Andover Modern Template Support Thread
HelpMeSell--Yes, both have the same end result. It is more "correct" to do it the way that you mentioned, but my addition is meant to make it easier for someone who has no idea what a stylesheet is :smile: They just have to copy and paste something into the end of the file.
Thanks,
Anne
Re: Andover Modern Template Support Thread
Font Sizing:
I know it's set in css but I have tried and failed!
Site: www-metalpix-co-uk
The body text is a little small and I would like to increase the size, also the same text size is reproduced in the catagories section.
I would like the text to be the same size as the Product Description. I have played on my local copy to no avail.
Any pointers would be great.. Thanks
Re: Andover Modern Template Support Thread
Quote:
Originally Posted by
Rizla
Font Sizing:
I know it's set in css but I have tried and failed!
Site: www-metalpix-co-uk
The body text is a little small and I would like to increase the size, also the same text size is reproduced in the catagories section.
I would like the text to be the same size as the Product Description. I have played on my local copy to no avail.
Any pointers would be great.. Thanks
I think you gotta edit "font-size: 62.5%" below in your stylesheet. I may very well be wrong as I'm still learning :unsure:
Code:
body {margin: 0;font-family: verdana, arial, helvetica, sans-serif;font-size: 62.5%;color: #888787;background: #6a6b6f url(../images/bk.jpg) repeat-x center top;}
Re: Andover Modern Template Support Thread
Quote:
Originally Posted by
picaflor-azul
Hi Anne,
Here is the link, "http:// bit.ly/ dQvARt" (without the spaces and quotation marks).
The errors come up on w3 validator after moving the easyslider into jscript_easySlider.php
40 Errors, 10 warning(s)
Thanks for the help!!!! :clap:
Re: Andover Modern Template Support Thread
Quote:
Hi Anne,
Here is the link, "http:// bit.ly/ dQvARt" (without the spaces and quotation marks).
The errors come up on w3 validator after moving the easyslider into jscript_easySlider.php
40 Errors, 10 warning(s)
Thanks for the help!!!!
I would just start with the first error:
Quote:
# Error Line 18, Column 8: required attribute "type" not specified
<script>
✉
The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.
Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.
If you read the error and explanation it tells you exactly what is wrong and how to fix it. I don't think that I can say it any clearer :smile:
Thanks,
Anne
Re: Andover Modern Template Support Thread
Quote:
Originally Posted by
picaflor-azul
I would just start with the first error:
If you read the error and explanation it tells you exactly what is wrong and how to fix it. I don't think that I can say it any clearer :smile:
Thanks,
Anne
I had read the errors before but it never really clicked. :wacko:
I got the first couple ones but I now have 31 Errors, 10 warning(s) and I really have no clue :(
Any tips?
Re: Andover Modern Template Support Thread
HelpMeSell:
"I think you gotta edit "font-size: 62.5%" below in your stylesheet. I may very well be wrong as I'm still learning"
Sorry but this changes the size globally... I just need those required areas altering. But thanks anyway.
Re: Andover Modern Template Support Thread
Quote:
Originally Posted by
Rizla
HelpMeSell:
"I think you gotta edit "font-size: 62.5%" below in your stylesheet. I may very well be wrong as I'm still learning"
Sorry but this changes the size globally... I just need those required areas altering. But thanks anyway.
Have you tried increasing the size from define pages editor for the particular pages that you like the text to be bigger?
Re: Andover Modern Template Support Thread
Quote:
Font Sizing:
I know it's set in css but I have tried and failed!
Site: www-metalpix-co-uk
The body text is a little small and I would like to increase the size, also the same text size is reproduced in the catagories section.
I would like the text to be the same size as the Product Description. I have played on my local copy to no avail.
Any pointers would be great.. Thanks
Either add a div to your text and style the div, or you can add:
Code:
#indexDefaultMainContent p{font-size:150%;}
to the bottom of your stylesheet.css. Just put the percent at whatever you want.
Thanks,
Anne