Page 7 of 40 FirstFirst ... 5678917 ... LastLast
Results 61 to 70 of 392
  1. #61
    Join Date
    Feb 2009
    Posts
    2
    Plugin Contributions
    0

    Default Re: Glacial Age Template Support Thread

    Hi Clyde.
    could you help me with 3 questions.



    #1 I have been trying to make my logo longer and centered, I have changed the css and header files as instructed in the wiki but its simply not working. any suggestions?

    #2 I also cant figure out how to put featured products and monthly specials into the center of the main page as is shown on your demo.

    #3 - how can I make a border around my new items, and featured, and specials such as there was in the classic version?

    by the way fantastic template, I take forever to choose anything but IM sure yours was the right one for my site.

    www.pandorasposters.com

  2. #62
    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 pandorasposters View Post
    Hi Clyde.
    could you help me with 3 questions.



    #1 I have been trying to make my logo longer and centered, I have changed the css and header files as instructed in the wiki but its simply not working. any suggestions?

    #2 I also cant figure out how to put featured products and monthly specials into the center of the main page as is shown on your demo.

    #3 - how can I make a border around my new items, and featured, and specials such as there was in the classic version?

    by the way fantastic template, I take forever to choose anything but IM sure yours was the right one for my site.

    www.pandorasposters.com
    #1 - open includes/templates/glacial_age/css/stylesheet.css

    find and change the following declaration as indicated by the highlighted portion.

    #logo {
    margin:0;
    text-align: center;
    }


    #2 - Edit the following settings:
    admin -> configuration -> index listing
    Show New Products on Main Page 1
    Show Featured Products on Main Page 2
    Show Special Products on Main Page 3
    Show Upcoming Products on Main Page 4


    #3 - open inlcudes/templates/glacial_age/css/stylesheet.css
    find and change the following declarations as indicated by the highlighted portion:

    .centerBoxWrapper {
    margin: 0;
    background-image:url(../images/title_cap_left.gif);
    background-repeat:no-repeat;
    background-position:top left;
    border: 1px solid #AAB7F3;
    }

  3. #63
    Join Date
    Feb 2009
    Posts
    2
    Plugin Contributions
    0

    Default Re: Glacial Age Template Support Thread

    Thank you very much Clyde. It all worked exactly as I envisioned. Its great that you do this like you do, not many people would. As I continue to set up my site, If you would like a free poster just let me know and I will be glad to ship it right out to you.

  4. #64
    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 pandorasposters View Post
    Thank you very much Clyde. It all worked exactly as I envisioned. Its great that you do this like you do, not many people would. As I continue to set up my site, If you would like a free poster just let me know and I will be glad to ship it right out to you.
    Glad to help

  5. #65

    Default Re: Glacial Age Template Support Thread

    Hi Clyde

    I'm new to ZenCart and I attempt to redesign your template. I changed images of side boxes, header, footer but I don't know how to change colors of main background :). I tried a different lines of code in stylesheet.css but it doesn’t work for me.


    Thanks

  6. #66
    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 miskowaty View Post
    Hi Clyde

    I'm new to ZenCart and I attempt to redesign your template. I changed images of side boxes, header, footer but I don't know how to change colors of main background :). I tried a different lines of code in stylesheet.css but it doesn’t work for me.


    Thanks
    URL for your site?

  7. #67

    Default Re: Glacial Age Template Support Thread

    Hi Clyde, I'm using localhost at the moment for test of zencart so no url available. When I changing that part in Classic Contemporary Green template, color of background is changing

    #mainWrapper {
    background-color: #20955d;
    text-align: left;
    width: 100%;
    vertical-align: top;
    border: 0px solid #000000;
    }

    in your template this looks like that
    PHP Code:
    #mainWrapper {
       
    margin0 auto;
       
    padding0;
        
    background#fff;
        
    border1px solid #000;
        
    text-alignleft;
        
    width90%;
        
    vertical-aligntop;
        } 
    I'm beginner so if you can give me some tips I'll be grateful. Thanks

  8. #68
    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 miskowaty View Post
    Hi Clyde, I'm using localhost at the moment for test of zencart so no url available. When I changing that part in Classic Contemporary Green template, color of background is changing

    #mainWrapper {
    background-color: #20955d;
    text-align: left;
    width: 100%;
    vertical-align: top;
    border: 0px solid #000000;
    }

    in your template this looks like that
    PHP Code:
    #mainWrapper {
       
    margin0 auto;
       
    padding0;
        
    background#fff;
        
    border1px solid #000;
        
    text-alignleft;
        
    width90%;
        
    vertical-aligntop;
        } 
    I'm beginner so if you can give me some tips I'll be grateful. Thanks
    The default declaration in the stylesheet.css for glaicial_age looks like this. You want to change the highlighted portion.

    Code:
    #mainWrapper {
       margin: 0 auto;
       padding: 0;
    	background: #ccccff;
    	border: 1px solid #000;
    	text-align: left;
    	width: 90%;
    	vertical-align: top;
    	}
    If you want to change the background color(s) of the center column then look in the stylesheet.css for the following declarations and change the background to the color of your choice:

    #centerOuterBorder

    .centerColumn

  9. #69
    Join Date
    Aug 2008
    Location
    Sydney Australia
    Posts
    829
    Plugin Contributions
    0

    Default Re: Glacial Age Template Support Thread

    Hi all,

    I am having problems with the viewing in the browser using IE compared to Firefox.

    Everything looks good in Firefox but if I use Internet explorer the top looks different (not showing all the buttons). Also left side box drop down list appears wider.

    This is my site: http://www.outdoorking.com/

    Any help fixing this up would be appreciated.
    Outdoorking
    Live Site www.outdoorking.com.au

  10. #70
    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 Bruce1952 View Post
    Hi all,

    I am having problems with the viewing in the browser using IE compared to Firefox.

    Everything looks good in Firefox but if I use Internet explorer the top looks different (not showing all the buttons). Also left side box drop down list appears wider.

    This is my site: http://www.outdoorking.com/

    Any help fixing this up would be appreciated.
    Hopefully this will fix both issues.

    Just unzip the file and upload the entire includes folder to your server.

    Attachment 5590
    Last edited by clydejones; 31 Dec 2009 at 02:34 AM.

 

 
Page 7 of 40 FirstFirst ... 5678917 ... 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