Thread: header links

Results 1 to 10 of 21

Hybrid View

  1. #1
    Join Date
    Apr 2008
    Posts
    42
    Plugin Contributions
    0

    Default Re: header links

    nevermind, it was a dumb thing. i did not have a sort order on the pages

  2. #2
    Join Date
    Mar 2008
    Location
    Cape Town & London (depends on the season)
    Posts
    2,975
    Plugin Contributions
    0

    Default Re: header links

    Quote Originally Posted by fsicody View Post
    it was a dumb thing. i did not have a sort order on the pages
    Don't be critical of yourself... I spent some days trying to figure out the same issue when I started using ezpages!

  3. #3
    Join Date
    Apr 2008
    Posts
    42
    Plugin Contributions
    0

    Default Re: header links

    next issue is changing the font color of the links, i've seen other threads on how to do it so i try same thing but no go, i don't think i'm editing the right css file, any ideas?

  4. #4
    Join Date
    Mar 2008
    Location
    Cape Town & London (depends on the season)
    Posts
    2,975
    Plugin Contributions
    0

    Default Re: header links

    Do you have FireFox browser? If so, go grab a couple of useful add-ons:-

    * Web Developers Toolkit by Chris Pederick
    * Firebug
    * Colorzilla

    These are some of the tools that many of us forum posters use to check out novice users' websites to look for behind-the-scenes stuff that build a page - such as CSS.

    You will - for example - be able to see what styles apply to every defined DIV on a webpage, and be able to change the css off-line to see what the result will look like.

  5. #5
    Join Date
    Apr 2008
    Posts
    42
    Plugin Contributions
    0

    Default Re: header links

    wow, those tools worked great. thank you very much

  6. #6
    Join Date
    Apr 2008
    Posts
    42
    Plugin Contributions
    0

    Default Re: header links

    ok the only problem now is that after a link is clicked, it changes to a different color which is fine for the rest of the links but i want my ez page links to always be one color except for when hovering. http://flowsolutions1.com/test

  7. #7
    Join Date
    Mar 2008
    Location
    Cape Town & London (depends on the season)
    Posts
    2,975
    Plugin Contributions
    0

    Default Re: header links

    The standard zencart stylesheet often "groups" a number of style ID's and classes, as this is more efficient.

    Sometimes, to get one element to display differently from others that "share" a style set, you have to SEPARATE it from the "group" and apply a different set of styles... EG:

    THIS:-


    a:hover, #navEZPagesTOC ul li a:hover, #navMain ul li a:hover, #navSupp ul li a:hover, #navCatTabs ul li a:hover {
    color: #FF0000;
    }

    BECOMES THIS, if you want to split out #navEZPagesTOC ul li a:hover and give it its own style:-


    a:hover, #navMain ul li a:hover, #navSupp ul li a:hover, #navCatTabs ul li a:hover {
    color: #FF0000;
    }

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

  8. #8
    Join Date
    Apr 2008
    Posts
    42
    Plugin Contributions
    0

    Default Re: header links

    Ok, i've figure out something that seems a lot easier to me, make the ez page, do not make ez page navigation visible and add links to the header that point to the ez page, all my problems solved, i hope.

 

 

Similar Threads

  1. Header links
    By zcadqliv in forum Templates, Stylesheets, Page Layout
    Replies: 12
    Last Post: 23 Feb 2011, 07:41 AM
  2. Separating the Header Links from Sidebox links in CSS
    By mommydesigns in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 24 May 2007, 02:42 PM
  3. Header Links?
    By bajanboost in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 31 Dec 2006, 09:44 AM
  4. Links in Header
    By personalisedpresent in forum Templates, Stylesheets, Page Layout
    Replies: 8
    Last Post: 13 Sep 2006, 06:03 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