• how would I take out a link hover on certain links?

    ex.

    I have a certain link hover set in the style.css file, but i put a picture link in my header, and I don’t want the hover setting to appear

Viewing 2 replies - 1 through 2 (of 2 total)
  • Mike, You lazy man, dont want to learn CSS, isnt You?

    it really stupid but possible 🙂
    h1 a:hover {
    text-decoration:none;
    cursor:default;
    }

    its disable “hover” state on ALL links inside h1 element container

    By ajasting “class” attribute to body element on Your frontpage (ie Homepage of the site) You might disable hover effect on h1 a only on homepage

    body.homepage h1 a:hover {
    text-decoration:none;
    cursor:default;
    }

    default value of property cursor generate warning on CSS validation if You use projection media type.

    Hope it help, but i really, really suggest You spend some time to learn basic CSS

    Amen to that! Preach it ganges! Preach it my brother or sister!..hahaha.. =P =D [cough]damn withdrawals n stuff..

    spencerp

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘link hover’ is closed to new replies.