Need a nudge to center the logo. Tried the following option in stylesheet.css:
#logo {
margin:0;
float: center;
When I put in 'right' it works, but 'center' not.
I also want to see the catogory tabs. Enabled them in admin-configuration-layout settings, but they are not visible.
Where can I change that?
website: www.centrumgaia.nl/shop
Thanks in advance,
Nick
open includes/templates/glacial_age/css/stylesheet.css
find the following declarations and make the highlighted changes
#logoWrapper {
margin: 50;
padding: 0;
height:100px;
background: /*url(../images/bg.gif)*/ #D7E0F8;
position:relative;
}
#logo {
margin:0;
text-align: center;
}
It worked, Clyde. Thank you.
Do you als have a solution for the catogory-tabs?
Also I can't get the right sideboxes working. Tried various options.
Is there something wrong in my stylesheet?![]()
by default glacial age displays both the right and left sideboxes.
check admin -> layout settings -> global right status (make sure it is set to 1)
open includes/templates/glacial_age/css/stylesheet.css
find the following declarations:
and replace them with the following:Code:#navCatTabsWrapper { display: none; } #siteinfoIP { display: none; } and un-comment the following two declarations:<br /> /* #navCatTabsWrapper { margin: 0 auto; background: url(../images/navbar.gif) repeat-x; font-weight: bold; color: #ffffff; }*/
Code:/*#navCatTabsWrapper { display: none; }*/ #siteinfoIP { display: none; } and un-comment the following two declarations:<br /> #navCatTabsWrapper { margin: 0 auto; background: url(../images/navbar.gif) repeat-x; font-weight: bold; color: #ffffff; }
Set the status to 1 and a couple of boxes to the right, but still no luck.
Perhaps I downloades an older version of your template?
In my stylesheet the code for the navTabs is this:
PHP Code:/*#navCatTabsWrapper, #siteinfoIP {
display: none;
}
#navCatTabsWrapper {
margin: 0;
background-color: #E5EDF5;
font-weight: bold;
color: #ffffff;
height: 1%;
width: 100%;
}
#navCatTabs ul {
margin: 0;
padding: 0.5em 0em;
list-style-type: none;
text-align: center;
line-height: 1.5em;
}
#navCatTabs ul li {
display: inline;
white-space: nowrap;
}
#navCatTabs ul li a {
text-decoration: none;
padding: 0em 0.5em;
margin: 0;
color: #000;
}
#navCatTabs ul li a:hover {
color: #000;
}*/
replace this code with that I provided above:
replace with:Code:/*#navCatTabsWrapper, #siteinfoIP { display: none; } #navCatTabsWrapper { margin: 0; background-color: #E5EDF5; font-weight: bold; color: #ffffff; height: 1%; width: 100%; }
Code:/*#navCatTabsWrapper { display: none; }*/ #siteinfoIP { display: none; } #navCatTabsWrapper { margin: 0 auto; background: url(../images/navbar.gif) repeat-x; font-weight: bold; color: #ffffff; }
The image navBar.gif doesn't excist in the folder .../images
Downloaded the template agian, but can't find it in the files.
replace this:
with thisCode:#navCatTabsWrapper { margin: 0 auto; background: url(../images/navbar.gif) repeat-x; font-weight: bold; color: #ffffff; }
Code:#navCatTabsWrapper { margin: 0; background-color: #E5EDF5; font-weight: bold; color: #ffffff; height: 1%; width: 100%; }
Perhaps I'm missing something, but isn't that the original code I had? (see earlier post)