take tint off 3 link images on Ixion theme

  • Unknown's avatar

    is there any css to take the tint off the 3 link images on Ixion theme under the main header? I have the css to take the tint of the main header…
    I don’t mind the image getting darker and text changing colour on mousing over it, but just not initially tinted. Thanks,

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi there, this takes away the overlay color (non-hover) and also sets the opacity to full so that the images don’t look faded.

    .featured-content .hentry {
    	background-color: rgba(0, 0, 0, 0);
    }
    .featured-content .hentry .post-thumbnail {
    	opacity: 1;
    }
  • Unknown's avatar

    Hello, thanks for that. When I apply it, it doesn’t look quite right as the blog title text is white and doesn’t show up well… i may leave it

    unless I can design my own image and add the blog title on it and have some css so that the overlayed text doesn’t appear? that may be an option?

    what do you think?

  • Unknown's avatar

    It’s going to be difficult I think to find a text color that will work on all the images. To hide those titles, you can use the following.

    .home .featured-content .hentry .entry-title a {
    	display: none;
    }
  • The topic ‘take tint off 3 link images on Ixion theme’ is closed to new replies.