Page 7 of 12 FirstFirst ... 56789 ... LastLast
Results 61 to 70 of 116
  1. #61
    Join Date
    Sep 2008
    Posts
    431
    Plugin Contributions
    0

    Default Re: Page layout question

    Okay, so I added that bit of code to my stylesheet to change the color of the information links but take a look. I have no idea how adding on little thing like that could mess up my header and everything? Shoot, even the side box headers are gone too!

    Ian

  2. #62
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Page layout question

    You have somehow knocked out one character and that has invalidated the last quarter of your stylesheet. Find
    Code:
    .normalprice,.productSpecialPriceSale
    { text-decoration:line-through;
      .productSpecialPrice,.productSalePrice,.productSpecialPriceSale,.productPriceDiscount
    { color:#f00; }
    and add the missing } after "line-through;".

    If something in the stylesheet is not responding to changes, try copying that rule and pasting it (in Edit CSS) one spot at a time higher in the stylesheet; when pasting the rule causes a change, you know you are above the point where the problem is.

  3. #63
    Join Date
    Sep 2008
    Posts
    431
    Plugin Contributions
    0

    Default Re: Page layout question

    Glenn, have a look now. I'm having a bit more success now. I've changed a few things including the footer links color. However, I'd like the double colons in the footer to the remain black as they are for the header. How exactly did I manage that? I ran a search for this and came up with nothing.

    Ian

  4. #64
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Page layout question

    The :: separators are controlled by the overall container color, while the links are controlled by the container link color.
    Make the container color black, and the link color yellow (edit these rules):
    Code:
    #navSuppWrapper,#navCatTabsWrapper
    { margin:0;
      background-color:#abbbd3;
      background-image:url(../images/tile_back.gif);
      padding:0.5em 0.2em;
      font-weight:bold;
      color:#f7c808;
      height:1%; }
    
    ...
    
    #navSupp ul li a
    { text-decoration:none;
      padding:0 0.5em;
      margin:0;
      color:#f7c808; /* This color code changes the color of the ez pages links in the footer */
      white-space:nowrap; }

  5. #65
    Join Date
    Sep 2008
    Posts
    431
    Plugin Contributions
    0

    Default Re: Page layout question

    Gotcha. I'm getting better at this. I'm finally starting to make notes in my stylesheet each time I discover what color codes control what. I now want to change the color code on all my little links throughout the entire site. I've tried making several changes but each time I just end up changing something else instead. For instance, if you click on "hardware" then all the links are in yellow. I feel those should be a different color because yellow is just hard to read. I've been through the sheet several times line by line and I can't seem to figure out exactly which bit of code is controlling all these smaller links. I know some larger bit of code must be doing this to me but I can't seem to figure it out yet because let's be honest, phrases like navEZPagesTOC ul li a aren't exactly easy to understand. I've also run a search and looked at several previous posts but everyone else seems to be continually talking about adjusting the color of the header or footer, which is not my case. So, how do I change the bagillion other link's colors?

    Ian

  6. #66
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Page layout question

    You are probably best off setting the original a:link {} color to what you want for the majority of ordinary links on your site, and then setting the larger header/sidebox/footer links individually.

  7. #67
    Join Date
    Sep 2008
    Posts
    431
    Plugin Contributions
    0

    Default Re: Page layout question

    Okay, I give up....again. I'm trying to make the links in the header look the same as they do in the footer. Yellow links with black colons. If you look at my code you'll quickly see that I've been playing with it but for some reason I can not seem to get the desired result. And it's weird too. Sometimes I'll make a change and reload the page and the colons will be yellow. I'll reload again without making any changes and that page load they'll be black. I can keep doing this and it constantly switches back and forth so I have no idea what to base my decisions and changes on since the damn thing won't stay consistent with whats either right or wrong. The hard part is that I'm trying to change ONLY the links in the header.

    Ian

  8. #68
    Join Date
    Nov 2007
    Location
    Woodbine, Georgia, United States
    Posts
    4,247
    Plugin Contributions
    58

    Default Re: Page layout question

    Try adding this style
    Code:
    #navMain ul li a
    {
    text-decoration: none;
    padding-top: 0pt;
    padding-right: 0.5em;
    padding-bottom: 0pt;
    padding-left: 0.5em;
    margin-top: 0pt;
    margin-right: 0pt;
    margin-bottom: 0pt;
    margin-left: 0pt;
    color: #f7c808;
    white-space: nowrap;
    }
    I am no designer... design hacker at best, but this is the style creating the desired look in the EZ pages links and the corresponding div for the top menu only. Then if it works you have only to add the colons to the file and clean it up.

    Also your page is seriously messed up in FireFox

    ~Melanie
    Last edited by mprough; 3 Jan 2009 at 05:37 PM. Reason: forgot add ff
    PRO-Webs, Inc. since 2003 :: Zen Cart Hosting :: Zen Cart SEO – 12 Steps to Success
    **I answer questions in the forum, private messages are not conducive to a helpful community.

  9. #69
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Page layout question

    It was a good start duplicating #navEZPagesTop for #navEZPagesTop a, but now you want to strip everything but the color from #navEZPagesTop a:
    Code:
    /*#navEZPagesTop 
    { width:512px; 
      float:right;
      background:none;
      font-size:0.95em;
      font-weight:bold;
      margin:111px 0 0 0;
      padding:0.5em; 
      color:#000000; }*/ /*This color color code is responsible for the links in the ez pages header*/
    
    #navEZPagesTop a
    { color:#f7c808; } /*This color color code is responsible for the links in the ez pages header*/
    When a selector is inside another one like #navEZPagesTop and #navEZPagesTop a, the font properties carry over and don't need to be duplicated - sometimes it would be bad to duplicate them (font-size in ems or % is cumulative). Margins and heights belong to the parent and shouldn't be duplicated for the child.


    #navMain affects only the top Home Login bar, and has no effect on the ez-pages bar. Don't change that unless you do want the style change Melanie suggested.
    Last edited by gjh42; 3 Jan 2009 at 05:42 PM.

  10. #70
    Join Date
    Sep 2008
    Posts
    431
    Plugin Contributions
    0

    Default Re: Page layout question

    Okay Glenn, so I added ,#navEZPagesTop a to my hover code after making your change. Now as always I can reload the page in IE and FF and get 5 or 6 different responses in 10 reloads. I have no idea if it's working right or not cause every time I get a different response when I reload without having made a change to anything. I think perhaps my computer is retarded. Is it displaying correctly for you?

    Ian

 

 
Page 7 of 12 FirstFirst ... 56789 ... LastLast

Similar Threads

  1. Main Page Layout Question
    By kinembe in forum Basic Configuration
    Replies: 2
    Last Post: 7 Jan 2012, 08:07 PM
  2. Product Listing display page / category page layout change question
    By cgarforth in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 16 Dec 2010, 02:37 PM
  3. Home Page Layout Question
    By EPA570 in forum Templates, Stylesheets, Page Layout
    Replies: 5
    Last Post: 2 Jul 2009, 09:54 AM
  4. Page layout question
    By tbroush in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 3 Apr 2007, 04:59 PM
  5. Question on page layout changes
    By tanky in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 3 Jul 2006, 10:04 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