Zen Cart Logo
Forums / Addon Templates / Aberdeen Neutral Template Support Thread

Aberdeen Neutral Template Support Thread

Views: 75,850

Results 181 to 200 of 479
7 Apr 2011, 6:42 PM
#181
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Aberdeen Neutral Template Support Thread

Thanks for the template, I really like it.

Can anyone tell me how to change the text color on the sidebox headers? At present it is red (7D0000) which doesn't go with my site.

This can be changed in the includes/templates/aberdeen_neutral/css/stylesheet.css

Thanks,

Anne

7 Apr 2011, 6:56 PM
#182
weisdaclick avatar

weisdaclick

New Zenner

Join Date:
Mar 2011
Posts:
42
Plugin Contributions:
0

Re: Aberdeen Neutral Template Support Thread

picaflor-azul:

This can be changed in the includes/templates/aberdeen_neutral/css/stylesheet.css

Thanks,

Anne

Thanks, the color was a very similar 7d0b0c - found it in the end.

Another question, I have removed the footer but I also want to remove all the text and sub-categories down there such as:

Quick Links
Information
Customer Service

I followed the instructions in the install file but it does not address this. I just want to remove all this text completely.

7 Apr 2011, 10:13 PM
#183
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Aberdeen Neutral Template Support Thread

Thanks, the color was a very similar 7d0b0c - found it in the end.

Another question, I have removed the footer but I also want to remove all the text and sub-categories down there such as:

Quick Links
Information
Customer Service

I followed the instructions in the install file but it does not address this. I just want to remove all this text completely.

The footer menu module is creating this. You can un-install this mod. Download the mod from the add ons section to see what files you need to remove.

Thanks,

Anne

8 Apr 2011, 3:24 AM
#184
weisdaclick avatar

weisdaclick

New Zenner

Join Date:
Mar 2011
Posts:
42
Plugin Contributions:
0

Re: Aberdeen Neutral Template Support Thread

Thanks Anne - resolved now.

9 Apr 2011, 2:45 AM
#185
weisdaclick avatar

weisdaclick

New Zenner

Join Date:
Mar 2011
Posts:
42
Plugin Contributions:
0

Re: Aberdeen Neutral Template Support Thread

NancyOK:

That worked great!! Thank you!

That doesn't work for me.

Here is the jscript_easySlider.php file I created (running on linux).

Have I messed it up? I followed the instructions.

=======================================

<script>^M /*^M * Easy Slider 1.7 - jQuery plugin^M * written by Alen Grakalic ^M * http://cssglobe.com/post/4004/easy-slider-15-the-easiest-jquery-plugin-for-sliding^M *^M * Copyright (c) 2009 Alen Grakalic (http://cssglobe.com)^M * Dual licensed under the MIT (MIT-LICENSE.txt)^M * and GPL (GPL-LICENSE.txt) licenses.^M *^M * Built for jQuery library^M * http://jquery.com^M *^M */^M ^M /*^M * markup example for $("#slider").easySlider();^M * ^M * <div id="slider">^M * <ul>^M * <li><img src="images/01.jpg" alt="" /></li>^M * <li><img src="images/02.jpg" alt="" /></li>^M * <li><img src="images/03.jpg" alt="" /></li>^M * <li><img src="images/04.jpg" alt="" /></li>^M * <li><img src="images/05.jpg" alt="" /></li>^M * </ul>^M * </div>^M *^M */^M ^M (function($) {^M ^M $.fn.easySlider = function(options){^M ^M // default configuration properties^M var defaults = { ^M prevId: 'prevBtn',^M prevText: 'Previous',^M nextId: 'nextBtn', ^M nextText: 'Next',^M controlsShow: true,^M controlsBefore: '',^M controlsAfter: '', ^M controlsFade: true,^M firstId: 'firstBtn',^M firstText: 'First',^M firstShow: false,^M lastId: 'lastBtn', ^M lastText: 'Last',^M lastShow: false, ^M vertical: false,^M speed: 2000,^M auto: false,^M pause: 3000,^M continuous: false, ^M numeric: false,^M numericId: 'controls'^M }; ^M ^M var options = $.extend(defaults, options); ^M ^M this.each(function() { ^M var obj = $(this); ^M var s = $("li", obj).length;^M var w = $("li", obj).width(); ^M var h = $("li", obj).height(); ^M var clickable = true;^M obj.width(w); ^M obj.height(h); ^M obj.css("overflow","hidden");^M var ts = s-1;^M var t = 0;^M $("ul", obj).css('width',s*w); ^M ^M if(options.continuous){^M $("ul", obj).prepend($("ul li:last-child", obj).clone().css("margin-left","-"+ w +"px"));^M $("ul", obj).append($("ul li:nth-child(2)", obj).clone());^M $("ul", obj).css('width',(s+1)*w);^M }; ^M ^M if(!options.vertical) $("li", obj).css('float','left');^M ^M if(options.controlsShow){^M var html = options.controlsBefore; ^M if(options.numeric){^M html += '<div id="control_div"><ol id="'+ options.numericId +'"></div></ol>';^M } else {^M if(options.firstShow) html += '<span id="'+ options.firstId +'"><a href=\"javascript:void(0);\">'+ options.firstText +'</a></span>';^M html += ' <span id="'+ options.prevId +'"><a href=\"javascript:void(0);\">'+ options.prevText +'</a></span>';^M html += ' <span id="'+ options.nextId +'"><a href=\"javascript:void(0);\">'+ options.nextText +'</a></span>';^M if(options.lastShow) html += ' <span id="'+ options.lastId +'"><a href=\"javascript:void(0);\">'+ options.lastText +'</a></span>'; ^M };^M ^M html += options.controlsAfter; ^M $(obj).after(html); ^M };^M ^M if(options.numeric){ ^M for(var i=0;i<s;i++){ ^M $(document.createElement("li"))^M .attr('id',options.numericId + (i+1))^M .html('<a rel='+ i +' href=\"javascript:void(0);\">'+ (i+1) +'</a>')^M .appendTo($("#"+ options.numericId))^M .click(function(){ ^M animate($("a",$(this)).attr('rel'),true);^M }); ^M }; ^M } else {^M $("a","#"+options.nextId).click(function(){ ^M animate("next",true);^M });^M $("a","#"+options.prevId).click(function(){ ^M animate("prev",true); ^M }); ^M $("a","#"+options.firstId).click(function(){ ^M animate("first",true);^M }); ^M $("a","#"+options.lastId).click(function(){ ^M animate("last",true); ^M }); ^M };^M ^M function setCurrent(i){^M i = parseInt(i)+1;^M $("li", "#" + options.numericId).removeClass("current");^M $("li#" + options.numericId + i).addClass("current");^M };^M ^M function adjust(){^M if(t>ts) t=0; ^M if(t<0) t=ts; ^M if(!options.vertical) {^M $("ul",obj).css("margin-left",(t*w*-1));^M } else {^M $("ul",obj).css("margin-left",(t*h*-1));^M }^M clickable = true;^M if(options.numeric) setCurrent(t);^M };^M ^M function animate(dir,clicked){^M if (clickable){^M clickable = false;^M var ot = t; ^M switch(dir){^M case "next":^M t = (ot>=ts) ? (options.continuous ? t+1 : ts) : t+1; ^M break; ^M case "prev":^M t = (t<=0) ? (options.continuous ? t-1 : 0) : t-1;^M break; ^M case "first":^M t = 0;^M break; ^M case "last":^M t = ts;^M break; ^M default:^M t = dir;^M break; ^M }; ^M var diff = Math.abs(ot-t);^M var speed = diff*options.speed; ^M if(!options.vertical) {^M p = (t*w*-1);^M $("ul",obj).animate(^M { marginLeft: p }, ^M { queue:false, duration:speed, complete:adjust }^M ); ^M } else {^M p = (t*h*-1);^M $("ul",obj).animate(^M { marginTop: p }, ^M { queue:false, duration:speed, complete:adjust }^M ); ^M };^M ^M if(!options.continuous && options.controlsFade){ ^M if(t==ts){^M $("a","#"+options.nextId).hide();^M $("a","#"+options.lastId).hide();^M } else {^M $("a","#"+options.nextId).show();^M $("a","#"+options.lastId).show(); ^M };^M if(t==0){^M $("a","#"+options.prevId).hide();^M $("a","#"+options.firstId).hide();^M } else {^M $("a","#"+options.prevId).show();^M $("a","#"+options.firstId).show();^M }; ^M }; ^M if(clicked) clearTimeout(timeout);^M if(options.auto && dir=="next" && !clicked){;^M timeout = setTimeout(function(){^M animate("next",false);^M },diff*options.speed+options.pause);^M };^M ^M };^M ^M };^M // init^M var timeout;^M if(options.auto){;^M timeout = setTimeout(function(){^M animate("next",false);^M },options.pause);^M }; ^M ^M if(options.numeric) setCurrent(0);^M ^M if(!options.continuous && options.controlsFade){ ^M $("a","#"+options.prevId).hide();^M $("a","#"+options.firstId).hide(); ^M }; ^M ^M });^M ^M };^M ^M })(jQuery);^M </script>
9 Apr 2011, 10:43 AM
#186
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Aberdeen Neutral Template Support Thread

That doesn't work for me.

If you follow the directions very carefully, it does work. I have done this many times. The instructions are really very clear and there is nothing that I can do to make it easier for you. I would recommend trying again.

Thanks,

Anne

9 Apr 2011, 6:42 PM
#187
weisdaclick avatar

weisdaclick

New Zenner

Join Date:
Mar 2011
Posts:
42
Plugin Contributions:
0

Re: Aberdeen Neutral Template Support Thread

picaflor-azul:

If you follow the directions very carefully, it does work. I have done this many times. The instructions are really very clear and there is nothing that I can do to make it easier for you. I would recommend trying again.

Thanks,

Anne

You mean these instructions........

http://www.zen-cart.com/forum/showpost.php?p=961529&postcount=248

"The problem is the jscript_easySlider.js is being loaded before the jscript_jquery.js file hence the error

to solve this I copied the contents of the jscript_easySlider.js file into a new file (you need the enclose it within the script tag ie <script>contents of the jscript_easySlider.js</script> name this new file jscript_easySlider.php and upload it to /includes/modules/pages/index
Now go back and delete the original jscript_easySlider.js from includes/templates/yourtemplate/jscript
It sould now work without any errors as the jscript_jquery.js is now loading first"

Hmmm tried that twice, not sure what else to do.

9 Apr 2011, 6:56 PM
#188
divavocals avatar

divavocals

Totally Zenned

Join Date:
Jan 2007
Location:
Los Angeles, California, United States
Posts:
10,011
Plugin Contributions:
3

Re: Aberdeen Neutral Template Support Thread

If you are NOT using a text editor to do this then the resulting file will not work.. But if you are using a proper text editor, and you followed these instructions to the letter then it simply does work..

What program are you using to create the new .js file?? (If you say MS Word or Open Office or any kind of "Word Processing" software then THIS is the problem)

weisdaclick:

You mean these instructions........

http://www.zen-cart.com/forum/showpost.php?p=961529&postcount=248

"The problem is the jscript_easySlider.js is being loaded before the jscript_jquery.js file hence the error

to solve this I copied the contents of the jscript_easySlider.js file into a new file (you need the enclose it within the script tag ie <script>contents of the jscript_easySlider.js</script> name this new file jscript_easySlider.php and upload it to /includes/modules/pages/index
Now go back and delete the original jscript_easySlider.js from includes/templates/yourtemplate/jscript
It sould now work without any errors as the jscript_jquery.js is now loading first"

Hmmm tried that twice, not sure what else to do.

9 Apr 2011, 9:34 PM
#189
weisdaclick avatar

weisdaclick

New Zenner

Join Date:
Mar 2011
Posts:
42
Plugin Contributions:
0

Re: Aberdeen Neutral Template Support Thread

DivaVocals:

If you are NOT using a text editor to do this then the resulting file will not work.. But if you are using a proper text editor, and you followed these instructions to the letter then it simply does work..

What program are you using to create the new .js file?? (If you say MS Word or Open Office or any kind of "Word Processing" software then THIS is the problem)

No I am using vi - linux shell. I will try it in Wordpad and see what happens.

9 Apr 2011, 9:53 PM
#190
weisdaclick avatar

weisdaclick

New Zenner

Join Date:
Mar 2011
Posts:
42
Plugin Contributions:
0

Re: Aberdeen Neutral Template Support Thread

DivaVocals:

If you are NOT using a text editor to do this then the resulting file will not work.. But if you are using a proper text editor, and you followed these instructions to the letter then it simply does work..

What program are you using to create the new .js file?? (If you say MS Word or Open Office or any kind of "Word Processing" software then THIS is the problem)

You were right.

I copied the file down to my PC from my server and edited it using Wordpad. Seems to work fine now.

Well done and thanks. :clap:

10 Apr 2011, 6:04 PM
#191
weisdaclick avatar

weisdaclick

New Zenner

Join Date:
Mar 2011
Posts:
42
Plugin Contributions:
0

Re: Aberdeen Neutral Template Support Thread

There are two things I have to do and cannot work out.

How to change the color of the number of categories text - the number in brackets in the sidebox.

How to change the products font color in New Products [more] and Bestsellers - not the heading but the product text in the sidebox (say product 1 beneath the thumbnail image).

10 Apr 2011, 11:46 PM
#192
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Aberdeen Neutral Template Support Thread

There are two things I have to do and cannot work out.

How to change the color of the number of categories text - the number in brackets in the sidebox.

How to change the products font color in New Products [more] and Bestsellers - not the heading but the product text in the sidebox (say product 1 beneath the thumbnail image).

If you post a link to your site I can take a look.

Thanks,

Anne

11 Apr 2011, 6:26 PM
#193
weisdaclick avatar

weisdaclick

New Zenner

Join Date:
Mar 2011
Posts:
42
Plugin Contributions:
0

Re: Aberdeen Neutral Template Support Thread

picaflor-azul:

If you post a link to your site I can take a look.

Thanks,

Anne

Sure take a look

http://blackiceapps.com/imagestore/

5 May 2011, 10:20 AM
#194
pawel1979 avatar

pawel1979

New Zenner

Join Date:
May 2011
Posts:
5
Plugin Contributions:
0

Re: Aberdeen Neutral Template Support Thread

I have instaled Aberdeen Neutral Template and I dont know how to set up width of main page. I would like to automatically adjust width page depending to diferent sizes of screen. I want to see 100% page on every screen. Where I should set up it ?

I gues, I have to change styleshhet.css , but I dont know which lines

Thanks

5 May 2011, 12:20 PM
#195
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Aberdeen Neutral Template Support Thread

I have instaled Aberdeen Neutral Template and I dont know how to set up width of main page. I would like to automatically adjust width page depending to diferent sizes of screen. I want to see 100% page on every screen. Where I should set up it ?

I gues, I have to change styleshhet.css , but I dont know which lines

Thanks

You can edit the stylesheet.css file. You will also have to re-do the styles/graphics for some of the other fixed width elements.

Thanks,

Anne

5 May 2011, 12:29 PM
#196
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Aberdeen Neutral Template Support Thread

How to change the color of the number of categories text - the number in brackets in the sidebox.

Add this declaration to the .sideBoxContent selector:

color:#fff;

How to change the products font color in New Products [more] and Bestsellers - not the heading but the product text in the sidebox (say product 1 beneath the thumbnail image).

Add this to yoru stylesheet.css:

#whatsnew a, #bestsellers a {color:#fff;}

Thanks,

Anne

5 May 2011, 9:38 PM
#197
pawel1979 avatar

pawel1979

New Zenner

Join Date:
May 2011
Posts:
5
Plugin Contributions:
0

Re: Aberdeen Neutral Template Support Thread

How to edit footer menu? How to edit links and add new ?

5 May 2011, 9:47 PM
#198
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Aberdeen Neutral Template Support Thread

How to edit footer menu? How to edit links and add new ?

You have to edit the stylesheet.css and there will probably be images that need to be edited/recoded also.

Thanks,

Anne

6 May 2011, 7:48 AM
#199
pawel1979 avatar

pawel1979

New Zenner

Join Date:
May 2011
Posts:
5
Plugin Contributions:
0

Re: Aberdeen Neutral Template Support Thread

picaflor-azul:

You have to edit the stylesheet.css and there will probably be images that need to be edited/recoded also.

Thanks,

Anne

I dont need change layout. I would like to change settings of links. Where I can find it ?

6 May 2011, 11:57 AM
#200
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Aberdeen Neutral Template Support Thread

I dont need change layout. I would like to change settings of links. Where I can find it ?

includes/languages/english/extra_definitions/andover_modern/footer_menu_defines.php

Thanks,

Anne