Page 23 of 72 FirstFirst ... 13212223242533 ... LastLast
Results 221 to 230 of 720
  1. #221
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Comstock Template

    Quote Originally Posted by charmedbytina2 View Post
    Yeah! Happy Dance! That fixed the other ie issue I was having too!

    One last thing (please don't hate me...) I would like to change the font color on the Privacy Notice In the EzPage Nave bar - but I can't get it to work!

    Thanks,
    Tina
    Find this declaration in the stylesheet.css

    #navEZPagesTop a {
    color: #fff; /*change this to suit*/
    }

  2. #222
    Join Date
    Mar 2007
    Location
    AZ
    Posts
    1,911
    Plugin Contributions
    2

    Default Re: Comstock Template

    Find this declaration in the stylesheet.css

    #navEZPagesTop a {
    color: #fff; /*change this to suit*/
    }
    Ok. That did it. I was [FONT=Comic Sans MS]this[/FONT] close when I changed this section of the stylesheet....


    #navEZPagesTop {
    margin: 0;
    padding: 6px 0 6px 0;
    background: url(../images/tier2_bg.gif) repeat-x;
    font-size: 1em;
    font-weight: bold;
    color: #771b5a;
    Thanks so much.

    BTW - I love the way the sideboxes go away on the products pages! That is way kewl!!!

    Tina

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

    Default Re: Comstock Template

    Quote Originally Posted by charmedbytina2 View Post
    Ok. That did it. I was [FONT=Comic Sans MS]this[/FONT] close when I changed this section of the stylesheet....




    Thanks so much.

    BTW - I love the way the sideboxes go away on the products pages! That is way kewl!!!

    Tina
    Glad its all working.

  4. #224
    Join Date
    Mar 2005
    Location
    Tempe, AZ
    Posts
    324
    Plugin Contributions
    0

    Default Re: Comstock Template

    How do get the banner to be on the main page only, you can see my test site here www.lextechs.com/Testsite what i am trying to do is get a banner or have banner 3 only show on the main page and not the other pages
    Lextechs.com Powered By ZenCart

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

    Default Re: Comstock Template

    Quote Originally Posted by lextechs View Post
    How do get the banner to be on the main page only, you can see my test site here www.lextechs.com/Testsite what i am trying to do is get a banner or have banner 3 only show on the main page and not the other pages
    NOTE: This tip can be used with any template!

    Open includes/templates/comstock/common/tpl_main_page.php

    Find the following section of code at around line(s) 112 - 115

    PHP Code:
    <?php
      
    if (SHOW_BANNERS_GROUP_SET3 != '' && $banner zen_banner_exists('dynamic'SHOW_BANNERS_GROUP_SET3)) {
        if (
    $banner->RecordCount() > 0) {
    ?>
    and replace with the following section of code

    PHP Code:
    <?php
      
    if ($this_is_home_page && SHOW_BANNERS_GROUP_SET3 != '' && $banner zen_banner_exists('dynamic'SHOW_BANNERS_GROUP_SET3)) {
        if (
    $banner->RecordCount() > 0) {
    ?>

  6. #226
    Join Date
    Mar 2005
    Location
    Tempe, AZ
    Posts
    324
    Plugin Contributions
    0

    Default Re: Comstock Template

    You the man that worked like a charm thanks for you help
    Lextechs.com Powered By ZenCart

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

    Default Re: Comstock Template

    Quote Originally Posted by lextechs View Post
    You the man that worked like a charm thanks for you help
    Glad to help!

  8. #228
    Join Date
    Aug 2007
    Location
    Troy, MI
    Posts
    80
    Plugin Contributions
    0

    Default Re: Comstock Template

    Question- Link is ip because site isn't live but here it is:
    http://74.52.222.34/~exclusiv/index.php?main_page=

    I JUST LOVE this template but the color scheme doesn't match well... so I want to fine tune it only. The layout rocks and is everything I hoped for but I need help with the following:

    (NOTE- this is only the 3rd template i have installed first was success, 2nd was failure -trying to get fixed and this one was a success so I am new to this I guess is the point)

    1. I would like to remove the gray banner near the top behind the graphic
    2. I would like to change the colors of the boxes,
    3- I would like to make the banner go across the top
    4- add back ground

    Here is our current site on a horrible cart: www.exclusivelyknd.com but want to try to somewhat mimic the site as far as color scheme etc....

    I appreciate any help and if I am asking in the wrong place please send me packing (with a map to the right location of course lol)

    Thanks!
    Brandy aka newbie!

    (I have been operating a zen cart www.luvingmammadiapers.com for a year but these new sites are the first i am doing the building of it... the other was built for me and a big headache )

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

    Default Re: Comstock Template

    Quote Originally Posted by luvingmamma View Post
    Question- Link is ip because site isn't live but here it is:
    http://74.52.222.34/~exclusiv/index.php?main_page=

    I JUST LOVE this template but the color scheme doesn't match well... so I want to fine tune it only. The layout rocks and is everything I hoped for but I need help with the following:

    (NOTE- this is only the 3rd template i have installed first was success, 2nd was failure -trying to get fixed and this one was a success so I am new to this I guess is the point)

    1. I would like to remove the gray banner near the top behind the graphic
    2. I would like to change the colors of the boxes,
    3- I would like to make the banner go across the top
    4- add back ground

    Here is our current site on a horrible cart: www.exclusivelyknd.com but want to try to somewhat mimic the site as far as color scheme etc....

    I appreciate any help and if I am asking in the wrong place please send me packing (with a map to the right location of course lol)

    Thanks!
    Brandy aka newbie!

    (I have been operating a zen cart www.luvingmammadiapers.com for a year but these new sites are the first i am doing the building of it... the other was built for me and a big headache )

    1. I would like to remove the gray banner near the top behind the graphic

    open includes/templates/comstock/css/stylesheet.css

    find the following declaration and delete the highlighted portion
    Code:
    #navAccountWrapper {
       margin: auto;
    background: url(../images/header_bg_2.jpg);
    	font-weight: bold;
    	color: #ccccff;
    	height: 26px;
       width: 907px;	
    }
    Save the file and upload to your server.

    2. I would like to change the colors of the boxes,

    The are graphics which you will have to change; they are located in
    includes/templates/comstock/images/
    sidebox_content_bg.gif
    sidebox_header_bg.gif

    You will need to edit the images in your graphics editor in order to change the colors.

    3- I would like to make the banner go across the top


    open includes/templates/comstock/css/stylesheet.css

    find the following declaration:

    Code:
    #logoWrapper {
       margin: 0 auto;
    	padding: 0;
    	width: 907px;
    	height:100px;
    	background: url(../images/header_bg.jpg) no-repeat #ccccff;
    }
    and replace with the following:
    Code:
    #logoWrapper {
       margin: 0;
    	padding: 0;
    	height:144px;
    	background: url(../images/header_bg.jpg) no-repeat #ccccff;
    }
    Find the following declaration:
    Code:
    #headerWrapper {
       margin: 0 auto;
    	padding: 0;
    	background: #ccccff;
    	}
    and replace with the following:
    Code:
    #headerWrapper {
       margin: 0;
    	padding: 0;
    	background: #ccccff;
    	width:100%;
    }
    4- add back ground
    open includes/templates/comstock/css/stylesheet.css
    add the highlighted portion to the body declaration.
    Code:
    body {
    	margin: 0;
    	padding: 0;
    	font-family: verdana, arial, helvetica, sans-serif;
    	font-size: 62.5%;
    	color: #000000;
    	background: url(../images/your_background_image.gif) #ccccff;
    	}
    save the file and upload to your server.

    Hope this helps

  10. #230
    Join Date
    Aug 2007
    Location
    Troy, MI
    Posts
    80
    Plugin Contributions
    0

    Default Re: Comstock Template

    holy cow you totally rock!!!
    I chose 2 of your templates because I LOVED THEM and now i am thankful... YOU ARE GOOD!

    On the one I need to modify in my graphics program- i don't have one do you recommend a certain one?


    off to make those changes :)

 

 
Page 23 of 72 FirstFirst ... 13212223242533 ... LastLast

Similar Threads

  1. v151 Reviews sidebox Comstock template
    By discoverytdi in forum Addon Templates
    Replies: 4
    Last Post: 7 Feb 2013, 04:49 AM
  2. Comstock template question
    By discoverytdi in forum Addon Templates
    Replies: 3
    Last Post: 11 Sep 2011, 10:28 PM
  3. Comstock template
    By grandpaj in forum Addon Templates
    Replies: 1
    Last Post: 25 Oct 2010, 10:09 PM
  4. Comstock template
    By grandpaj in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 22 Oct 2010, 04:02 AM
  5. Comstock Template Help -
    By Mrsb in forum Addon Templates
    Replies: 1
    Last Post: 23 Mar 2009, 07:14 PM

Bookmarks

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
Zen-Cart, Internet Selling Services, Klamath Falls, OR