Page 16 of 40 FirstFirst ... 6141516171826 ... LastLast
Results 151 to 160 of 392
  1. #151
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Glacial Age Template Support Thread

    Quote Originally Posted by NSABaits View Post
    Can you point me in the right direction???

    Where can I change the global sidebox font and font size. I'm sure it's in the style sheet somewhere but as I'm not very good with CSS better to ask than break the style sheet.

    Thanks in advance,

    Giles.
    change the following declarations in the stylesheet

    #navColumnOneWrapper, #navColumnTwoWrapper {
    margin: auto;
    font-size: .9em;
    }

  2. #152
    Join Date
    Mar 2009
    Posts
    34
    Plugin Contributions
    0

    Default Re: Glacial Age Template Support Thread

    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

  3. #153
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Glacial Age Template Support Thread

    Quote Originally Posted by NickP View Post
    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;
    }

  4. #154
    Join Date
    Mar 2009
    Posts
    34
    Plugin Contributions
    0

    Default Re: Glacial Age Template Support Thread

    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?

  5. #155
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Glacial Age Template Support Thread

    Quote Originally Posted by NickP View Post
    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:

    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;
    	}*/
    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;
    	}

  6. #156
    Join Date
    Mar 2009
    Posts
    34
    Plugin Contributions
    0

    Default Re: Glacial Age Template Support Thread

    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;
        }*/ 

  7. #157
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Glacial Age Template Support Thread

    Quote Originally Posted by NickP View Post
    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:

    Code:
    /*#navCatTabsWrapper, #siteinfoIP {
    display: none;
    }
    #navCatTabsWrapper {
        margin: 0;
        background-color: #E5EDF5;
        font-weight: bold;
        color: #ffffff;
        height: 1%;
        width: 100%;
        }
    replace with:
    Code:
    /*#navCatTabsWrapper {
    display: none;
    }*/
    #siteinfoIP {
    display: none;
    }
    
    #navCatTabsWrapper {
    margin: 0 auto;
       background: url(../images/navbar.gif) repeat-x;
    	font-weight: bold;
    	color: #ffffff;
    	}

  8. #158
    Join Date
    Mar 2009
    Posts
    34
    Plugin Contributions
    0

    Default Re: Glacial Age Template Support Thread

    The image navBar.gif doesn't excist in the folder .../images
    Downloaded the template agian, but can't find it in the files.

  9. #159
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Glacial Age Template Support Thread

    Quote Originally Posted by NickP View Post
    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:

    Code:
    #navCatTabsWrapper {
    margin: 0 auto;
       background: url(../images/navbar.gif) repeat-x;
    	font-weight: bold;
    	color: #ffffff;
    	}
    with this

    Code:
    #navCatTabsWrapper {
        margin: 0;
        background-color: #E5EDF5;
        font-weight: bold;
        color: #ffffff;
        height: 1%;
        width: 100%;
        }

  10. #160
    Join Date
    Mar 2009
    Posts
    34
    Plugin Contributions
    0

    Default Re: Glacial Age Template Support Thread

    Perhaps I'm missing something, but isn't that the original code I had? (see earlier post)

 

 
Page 16 of 40 FirstFirst ... 6141516171826 ... LastLast

Similar Threads

  1. Quick Help With Glacial Age Template
    By andycowboy in forum Addon Templates
    Replies: 3
    Last Post: 29 Dec 2011, 02:19 PM
  2. Glacial Age help
    By zbdude in forum Addon Templates
    Replies: 3
    Last Post: 10 Jul 2010, 07:05 PM
  3. Glacial Age V2.0 Template
    By irishshopper in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 19 May 2010, 02:12 PM
  4. Logo Full Width - Glacial Age template
    By RiverCity in forum Addon Templates
    Replies: 2
    Last Post: 6 Jul 2009, 06:54 PM
  5. glacial age template help
    By bubblycrazy in forum General Questions
    Replies: 5
    Last Post: 26 Jan 2009, 01:28 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg