Zen Cart Logo
Forums / Addon Templates / Glacial Age Template Support Thread

Glacial Age Template Support Thread

Views: 70,761

Results 141 to 160 of 392
8 Dec 2009, 10:56 PM
#141
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Glacial Age Template Support Thread

justme2:

Hyperlinks with Glacial Age???

Most hyperlinks will be of a different color but with this template they just look like regular text. Is there a place to turn them on or does it involve additional codeing?

http://cheaperthanthem.net/CTTShop/

on the main page I have added the text "HYPERLINK" which links back to the same page. Problem is it just looks like regular text unless you move your mouse over it then the cursor will change. Makes it hard for customers to find links.

Any help??

open includes/templates/glacial_age/css/stylesheet.css

find the following declarations and change the color:#000; to suite your needs.

a:link, #navEZPagesTOC ul li a {
color: #000;
text-decoration: none;
}

a:visited {
color: #000;
text-decoration: none;
}

a:hover, #navEZPagesTOC ul li a:hover {
color: #000;
}

a:active {
color: #000;
}

9 Dec 2009, 5:58 PM
#142
ptowers49 avatar

ptowers49

New Zenner

Join Date:
Aug 2009
Location:
UK
Posts:
71
Plugin Contributions:
0

Re: Glacial Age Template Support Thread

I am just putting together https://www.electrical-and-plumbing.co.uk
I am just trying to modify the header tagline.
When I change this through #tagline and #taglinewrapper in CSS it works fine in firefox but nothing changes in IE, and naturally the tagline looks different in IE and firefox!!!!

any ideas?

thanks in anticipation/ Paul

9 Dec 2009, 6:31 PM
#143
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Glacial Age Template Support Thread

ptowers49:

I am just putting together https://www.electrical-and-plumbing.co.uk
I am just trying to modify the header tagline.
When I change this through #tagline and #taglinewrapper in CSS it works fine in firefox but nothing changes in IE, and naturally the tagline looks different in IE and firefox!!!!

any ideas?

thanks in anticipation/ Paul

It looks the same in IE7/8 as it does in FF

9 Dec 2009, 8:09 PM
#145
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Glacial Age Template Support Thread

ptowers49:

sorry I meant https://www.electrical-and-plumbing-supplies.co.uk !
does this one look the same for you in IE and FF?

You can try the following:

open includes/templates/glacial_age/css/stylesheet.css

find the following section and add the highlighted portion
#taglineWrapper {
/margin: 0;/
position: absolute;
top: 30px;
left: 280px;
width: 500px;
height:1%;
}
#tagline {
/padding-top:10px;/
color:#000;
font-size: 2.5em;
font-weight: bold;
text-align : center;
vertical-align: middle;
line-height:normal;
}
#tagline span {
font-style: italic;
}

Now open includes/languages/english/glacial_age/header.php

change the following declaration as indicated.

define('HEADER_SALES_TEXT', 'Electrical and Plumbing Supplies <br /><span>.....great products delivered direct</span>');

9 Dec 2009, 8:23 PM
#146
ptowers49 avatar

ptowers49

New Zenner

Join Date:
Aug 2009
Location:
UK
Posts:
71
Plugin Contributions:
0

Re: Glacial Age Template Support Thread

thanks for the prompt responce Clyde,

but the thing that confuses me if that if you change the font-size in #tagline, or the width in #taglinewrapper it changes fine in FF but not in IE!!!! In IE the tagline just stays the same size and width!!

would you know why that is ?

9 Dec 2009, 9:11 PM
#147
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Glacial Age Template Support Thread

ptowers49:

thanks for the prompt responce Clyde,

but the thing that confuses me if that if you change the font-size in #tagline, or the width in #taglinewrapper it changes fine in FF but not in IE!!!! In IE the tagline just stays the same size and width!!

would you know why that is ?

The changes I gave you work in both FF and IE7/8 (giving the same display in both browsers)

1 Jan 2010, 5:50 PM
#148
ayperi avatar

ayperi

New Zenner

Join Date:
Dec 2008
Posts:
29
Plugin Contributions:
0

Re: Glacial Age Template Support Thread

just thought to post my current update. Somewhat took the advise of just replacing the cause file (info_display type file) with a "clean" once, but instead of the default/original file I used the file that was used for the mod I needed to keep and it worked like a charm :D Again thanks for the awesome template, it looks great with the colors themes of my site ^^

7 Jan 2010, 7:24 AM
#149
iatia avatar

iatia

Zen Follower

Join Date:
Nov 2009
Location:
Aransas Pass, TX
Posts:
102
Plugin Contributions:
1

Re: Glacial Age Template Support Thread

clydejones:

This is not a template specific question.

The shipping estimator is completely seperate from the shopping cart form and uses javascript. moving the button into the shopping cart form may therefore cause problems with the estimator.

The file you need is includes/templates/template_default/templates/tpl_shopping_cart_default.php

after making any edits make sure you move the edited file to:

includes/templates/glacial_age/templates/tpl_shopping_cart_default.php

The solution is:

<br> <!--[if IE]> <br> <br> <![endif]-->

Put this code just before the VERY LAST </div> at the VERY END of the various "tpl_????_.php" files that use the buttons. This will bring the buttons up inside the frame for a cleaner look. Tested on IE8 Safari and SeaMonkey.

17 Jan 2010, 3:34 PM
#150
nsabaits avatar

nsabaits

New Zenner

Join Date:
Oct 2008
Posts:
53
Plugin Contributions:
0

Re: Glacial Age Template Support Thread

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.

17 Jan 2010, 4:58 PM
#151
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Glacial Age Template Support Thread

NSABaits:

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

1 Feb 2010, 6:44 PM
#152
nickp avatar

nickp

New Zenner

Join Date:
Mar 2009
Posts:
34
Plugin Contributions:
0

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: https://www.centrumgaia.nl/shop

Thanks in advance,
Nick

1 Feb 2010, 6:48 PM
#153
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Glacial Age Template Support Thread

NickP:

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: https://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;
}

1 Feb 2010, 7:01 PM
#154
nickp avatar

nickp

New Zenner

Join Date:
Mar 2009
Posts:
34
Plugin Contributions:
0

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?:(

1 Feb 2010, 7:19 PM
#155
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Glacial Age Template Support Thread

NickP:

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:

#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:

/*#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;
	}
1 Feb 2010, 7:37 PM
#156
nickp avatar

nickp

New Zenner

Join Date:
Mar 2009
Posts:
34
Plugin Contributions:
0

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:

/*#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;
	}*/
1 Feb 2010, 7:43 PM
#157
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Glacial Age Template Support Thread

NickP:

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:

/#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:

/*#navCatTabsWrapper, #siteinfoIP {
display: none;
}
#navCatTabsWrapper {
margin: 0;
background-color: #E5EDF5;
font-weight: bold;
color: #ffffff;
height: 1%;
width: 100%;
}


replace with:

/#navCatTabsWrapper {
display: none;
}
/
#siteinfoIP {
display: none;
}

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

1 Feb 2010, 7:55 PM
#158
nickp avatar

nickp

New Zenner

Join Date:
Mar 2009
Posts:
34
Plugin Contributions:
0

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.

1 Feb 2010, 9:11 PM
#159
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Glacial Age Template Support Thread

NickP:

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:

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

with this

#navCatTabsWrapper {
    margin: 0;
    background-color: #E5EDF5;
    font-weight: bold;
    color: #ffffff;
    height: 1%;
    width: 100%;
    }
1 Feb 2010, 9:55 PM
#160
nickp avatar

nickp

New Zenner

Join Date:
Mar 2009
Posts:
34
Plugin Contributions:
0

Re: Glacial Age Template Support Thread

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