Page 18 of 47 FirstFirst ... 8161718192028 ... LastLast
Results 171 to 180 of 462
  1. #171
    Join Date
    Dec 2006
    Posts
    18
    Plugin Contributions
    0

    Default Re: Simple Zen Template, now in download section...

    I can't edit my previous post for some reason. Ok, I tried this method to remove the 3 icons in the header, by commenting it out using an additional CSS property. It's not working though in any of my browsers. I cleared their cache too.

    Originally Posted by Christian111 View Post
    Hi,

    I use the simple Zen 1.8 on my Zen Cart 1.3.5 (German version). I want to remove the shopping cart/contact us/my account links from the header. So I comment the "Top Nav Links with Image and link only" in the css file out but the links are still there.

    You can see it here: http://lm.teestube-online.de

    Anyone an idea what I have to do to remove the links?


    Thanks and greats

    Christian
    Hi Christain

    The links are part of the HTML generated by your common/tpl_header.php file. The CSS section that commented out styles these links, so all you have removed is the styling rather than the links themselves. To remove the liks you would need either to comment them out in the tpl_header.php file, or you could hide them by adding the following to your stylesheet
    Quote:
    #navMain {display:none}

  2. #172
    Join Date
    Dec 2006
    Posts
    18
    Plugin Contributions
    0

    Default Re: Simple Zen Template, now in download section...

    I'd like to add this in case anyone needs to know: I was looking for the way to remove the icons in the header and their links. A friend with more knowledge said do this in the stylesheet for the template:
    #tagline {display:none;}

    this guy just removes the top bar login things:
    #navMain {display:none}

  3. #173
    Join Date
    Nov 2006
    Posts
    512
    Plugin Contributions
    0

    Default Re: Simple Zen Template - available in download section

    I upgraded from Simple Zen 1.8 to 2.0 today. It looks fantastic! So much cleaner and tighter.

    However, I have some display issues, which I have spent today trying to figure out, but can't seem to track down:

    in all browsers:

    1. a small "s" in the lower left hand corner - appeared when I added:

    PHP Code:
    #navMainWrapper {
        
    backgroundurl(../images/gradient.gifrepeat-x;
        
    font-weightbold;
        
    color#fff;
        
    width100%;
        
    font-size:1em;
        
    border-bottom:1px solid #333;
        
    height:34px;
        } 
    2. the search sidebox is now attached to the shopping cart sidebox (I have pages with just the shopping cart sidebox-now both appear)

    in IE6:

    3. The top header has the lower halves of letters missing: the "g" in log in and the "p"'s in shopping.

    in Safari:

    4. shipping insurance box is out of alignment (in check out)

    ------------
    On going issues before the upgrade:

    in Safari:

    1. My account bullet points running into the sideboxes
    2. My wish list bullet points running into the sideboxes (still exists even with this code added)
    PHP Code:
    <div class="centerColumn" id="un"> <!-- begin (unid for styling --> 
    3. In category sidebox: large gap under last category before Specials Link (could be BetterCategories mod-not sure)

    in IE6

    4. My wish list bullet points running into the sideboxes (did not exist pre-up grade)

    in FF:

    5. I deleted some category headings ie: "Search" from the english file. In FF an Empty Space remains there (might have to live with this one?)

    ----
    And a FF warnings which I don't know if important, or not:


    Warning: Error in parsing value for property 'font'. Declaration dropped.
    Source File: https://secure.xxxx.com/includes/tem...esheet_new.css
    Line: 245

  4. #174
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Simple Zen Template - available in download section

    Quote Originally Posted by dharma View Post
    I upgraded from Simple Zen 1.8 to 2.0 today. It looks fantastic! So much cleaner and tighter.

    However, I have some display issues, which I have spent today trying to figure out, but can't seem to track down:

    in all browsers:

    1. a small "s" in the lower left hand corner - appeared when I added:
    LOL, I'm trying to imagine a scenario where that chunk of css could cause an s, and it's not working out for me. When I view your source i see the letter "s" just after this section:

    Code:
    <!--bof-navigation display -->
    <div id="navSuppWrapper">s
    Check your common/tpl_footer.php file, you may have accidentally added a "s" in there.


    Quote Originally Posted by dharma View Post
    2. the search sidebox is now attached to the shopping cart sidebox (I have pages with just the shopping cart sidebox-now both appear)
    I'm not sure what you mean by the above. Attached?

    Quote Originally Posted by dharma View Post
    in IE6:

    3. The top header has the lower halves of letters missing: the "g" in log in and the "p"'s in shopping.
    Try changing the following section to this:

    #navMain ul {
    padding-top:.5em;
    list-style-type: none;
    text-align: center;
    line-height: 2em;
    }


    Quote Originally Posted by dharma View Post
    in Safari:

    4. shipping insurance box is out of alignment (in check out)
    I think I see what you mean, but I don't see that as an alignment problem, the selection button is just below the text.

    Quote Originally Posted by dharma View Post
    ------------
    On going issues before the upgrade:

    in Safari:

    1. My account bullet points running into the sideboxes
    2. My wish list bullet points running into the sideboxes (still exists even with this code added)
    PHP Code:
    <div class="centerColumn" id="un"> <!-- begin (unid for styling --> 
    .centerColumn ul {padding-left:20px;}


    Quote Originally Posted by dharma View Post
    3. In category sidebox: large gap under last category before Specials Link (could be BetterCategories mod-not sure)
    remove the top padding from here:
    HR {
    height: 1px;
    margin-top: 0.5em
    border: none;
    border-bottom: 1px solid #9a9a9a;
    }


    Quote Originally Posted by dharma View Post
    in FF:

    5. I deleted some category headings ie: "Search" from the english file. In FF an Empty Space remains there (might have to live with this one?)
    #searchHeading {height:0}


    Quote Originally Posted by dharma View Post
    ----
    And a FF warnings which I don't know if important, or not:


    Warning: Error in parsing value for property 'font'. Declaration dropped.
    Source File: https://secure.xxxx.com/includes/tem...esheet_new.css
    Line: 245
    You can ignore that, its not important.... however there is a way to stop it... I can't recall exactly what the issue with that was, I either addressed it with this template or another, I'll post when I remember where that can be adjusted. ;-)

  5. #175
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Simple Zen Template - available in download section

    Quote Originally Posted by dharma View Post
    And a FF warnings which I don't know if important, or not:


    Warning: Error in parsing value for property 'font'. Declaration dropped.
    Source File: https://secure.xxxx.com/includes/tem...esheet_new.css
    Line: 245
    Try removing:
    font-size:1em;

    from #navSuppWrapper

  6. #176
    Join Date
    Feb 2007
    Location
    Canada
    Posts
    83
    Plugin Contributions
    0

    Default Re: Simple Zen background help

    I am a SHE btw :)

    I am still not getting anywhere with changing the horrid gray background...although not for lack of trying...

    I want to add a simple faintly dotted background tile to replace the gray on the outer side of main box..if this makes sense..not the background of the main site area...

    Here is my current code in the body:

    body {
    margin: 0 auto;
    font-family: verdana, arial, helvetica, sans-serif;
    font-size: 78.5%;
    background: url("../images/bluedots.jpg");
    padding-top:25px;
    }

    What is wrong here...? Still seeing gray....

    Thanks,
    Moy
    www.bydesigncreations.ca/index.php

  7. #177
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Simple Zen background help

    Quote Originally Posted by BDCreations View Post
    I am a SHE btw :)

    I am still not getting anywhere with changing the horrid gray background...although not for lack of trying...

    I want to add a simple faintly dotted background tile to replace the gray on the outer side of main box..if this makes sense..not the background of the main site area...

    Here is my current code in the body:

    body {
    margin: 0 auto;
    font-family: verdana, arial, helvetica, sans-serif;
    font-size: 78.5&#37;;
    background: url("../images/bluedots.jpg");
    padding-top:25px;
    }

    What is wrong here...? Still seeing gray....

    Thanks,
    Moy
    www.bydesigncreations.ca/index.php
    Thanks for the compliment. Anyway, I guess you figured it out, because when I go to your site, I don't see "horrid" gray, I see polkadots.

  8. #178
    Join Date
    Feb 2007
    Location
    Canada
    Posts
    83
    Plugin Contributions
    0

    Default Re: Simple Zen Template - available in download section

    I finally did get it - no idea what was different this time but obviously something was wrong with my css...now I can do it I can find a background image I like to match colours!

    Can you still tell me why I can no long see the tail of the "G" in LOG IN at the top of the screen???

    Or how about where to change the hover effects to a HIGHLIGHT on the leftside categories menus...or make them into a bullet list as others have done rather than the current line setup??? :)

    www.bydesigncreations.ca/index.php

    Thanks,
    Moy :)

  9. #179
    Join Date
    Feb 2007
    Location
    Canada
    Posts
    83
    Plugin Contributions
    0

    Default Re: Simple Zen Template - available in download section

    Wow - fixed the MISSING G myself...still curious about where to change the hover effects to a HIGHLIGHT on the leftside categories menus...or make them into a bullet list as others have done rather than the current line setup??? :)

    Or how about removing righthand colum altogether as my prodcuts seem cramped as they are now in the small center column...Like in the sample of the layout you show in your main inttro (it shows a large left column and smaller category right column..but only 2 not 3 as I have now).

    I DO loooooove the template and ZenCart BTW...just really not an easy thing for a die-hard HTML coder to wrap their mind around this CSS stuff... COMPLETELY DIFFERENT!!!!

  10. #180
    Join Date
    Sep 2006
    Location
    Beerwah. QLD. Australia
    Posts
    79
    Plugin Contributions
    0

    Default Re: Simple Zen Template - available in download section

    Good Morning,
    Just to let you know that your Text looks fine here, I checked it using both Firefox and IE

    Ron

 

 
Page 18 of 47 FirstFirst ... 8161718192028 ... LastLast

Similar Threads

  1. Cherry Zen Template Support Thread
    By jettrue in forum Addon Templates
    Replies: 3250
    Last Post: 13 Nov 2017, 08:02 PM
  2. Fresh Zen -- JellyFish Template Support Thread
    By magicbox in forum Addon Templates
    Replies: 93
    Last Post: 11 Apr 2012, 08:54 AM
  3. Free Template "Future Zen" v1.2 Support Thread
    By kuroi in forum Addon Templates
    Replies: 69
    Last Post: 16 Jul 2010, 06:00 AM
  4. Re: Simple SEO URL [support thread]
    By creamcrackers in forum General Questions
    Replies: 2
    Last Post: 16 Aug 2009, 03:02 PM
  5. [Support Thread] Simple Video Manager
    By yellow1912 in forum All Other Contributions/Addons
    Replies: 6
    Last Post: 1 Nov 2008, 02:44 PM

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