when image is set to 'no link' how to disactivate image?

  • Author
    Posts
  • #25078
    autista

    hi,
    i cannot figure out how to make the images on my site not respond when the mouse hovers over them. I unlinked most of the images (link=none), but when the cursur goes over the image it still changes color (goes slightly white), so it looks like there is a link when there isnt. How can i change this?

    thank you!

    #25106
    Walt

    First, let me start off by saying that “disactivate” is not a word.

    Second, find this code in your stylesheet:

    #content .wp-caption img:hover {
    opacity:0.8;
    filter:alpha(opacity=80);

    #26318
    Jisuk

    I’m having the same problem. When I mouse over an image, the “there’s a link here!” hand cursor appears, even though there is no link. Is there any way to disable this?

    #26644
    Kay
    Cryout Creations mastermind

    Hi guys,

    @autista Pretty much in the lines of what Walt said, add this code to your Custom CSS area under Miscellaneous Settings:

    #content .wp-caption img:hover {
    opacity: 1 !important;
    filter: alpha(opacity=100) !important;
    }

    @Jisuk Could you show us a link to a specific page where that happens?

    PS: disactivate = disable + deactivate = the ultimate form of turning something off


    Before posting consider reading our short theme debugging instructions.
    Please read the FAQs: MantraNirvanaParabolaTempera
    Tutorials: custom menustranslating themeinstalling themecategory page with introdisabling comments Wordpress: child themescategories/posts
    Before making any modifications to your theme we strongly recommend using Child Themes.
Viewing 4 posts - 1 through 4 (of 4 total)

The topic ‘when image is set to 'no link' how to disactivate image?’ is closed to new replies.