
Originally Posted by
Graham35
Hi
How do get into the tagline in the head section, to change the text or even remove it.
Also can I change the site to be "not fluid"
I really like this template, thanks
Graham
Anything like that would be found in the language files. You can use your "tools", "Developers Tool Kit" to search for chunks of text to find out what file it originates from.
To make it un-fluid, change this section:
Code:
#nw {
width:80%; /* main site width; if you'd prefer a fixed width site, enter the width in px here. */
max-width:1300px; /* prevents the main content from getting wider than 1300px in sites other than IE */
min-width:1000px; /* this prevents the main content from getting smaller than 1000px in browsers OTHER THAN IE. You can make this as small as 800px, BUT any smaller than that, and the top header menu will break into two lines. Also, if you make this width 800px, you will need to make sure your product image on the product info page is no wider than 190px */
}
/* IE only. Controls Width of Site and Main Content*/
* html #nw {
width:expression((d=document.compatMode=="CSS1Compat" ? document.documentElement : document.body) && (d.clientWidth > 1300? "1300px" : d.clientWidth > 1048? "80%" : d.clientWidth < 1048? "1000px" : "80%")); /* this prevents the site from getting smaller than 1000px or wider than 1300px in IE */
}
To this:
Code:
#nw {
width:1000px; /* main site width; if you'd prefer a fixed width site, enter the width in px here. */
Of course changing 1000px the width you'd prefer.
Bookmarks