• hi, i’m working on my new theme. Almost finished with it.

    I have got a problem with my sidebar. Everything is working as it supposed to be in Firefox. But not in Opera, Safari, IE.

    I list all of my recent posts and categories on the sidebar.

    Problem in Safari:
    Color doesn’t change when you hover on a link.

    Problem in IE:
    When you hover on a link, all the links in sidebar move down a bit. This happens on everylink.

    Problem in Opera:
    Same thing happens as IE but not every link.

    I already used css validator, only found 3 problems(a plugin’s css). Also, checked for html, found some problems but I dont think they are related the one i’m having.

    Can someone take a look at this site and help me out?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Start with changing this:

    #sidebar ul li a:link,a:visited {
    text-decoration: none;
    color:#36363a;
    }
    
    #sidebar ul li a:hover {
    display: block;
    border: 0px;
    color:#513cf0;
    text-decoration: none;
    }

    To this:

    #sidebar ul li a:link,a:visited {
    text-decoration: none;
    display: block;
    color:#36363a;
    }
    
    #sidebar ul li a:hover, #sidebar ul li a:active {
    color:#513cf0;
    }

    Then see if you still have the same issue.

    Thread Starter yazin

    (@yazin)

    Thanks a lot. That worked just fine.

    Tee-riffic! Cheers. ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Hover Problem’ is closed to new replies.