• Hi,

    First of all I’d like to mention that I did make a child theme, so I’m not editing the original one.

    How to get rid of the “block link” and make it look like a normal link. See image attached for an example of what i mean. I can’t seem to find the style in the CSS that controls this even though I can resize it and move it, I can’t get rid of it.

    I thought it was this one:

    article.feature-image.small .entry-summary p a {
    	text-decoration: none;
    	left: 0%;
    	padding: 0px 0px 0px 0px;
    	position: relative;
    	top: 20px;
    	width: 190px;
    	z-index: 1;

    This makes it wrap around the text because all the padding is 0, but does not make the block disappear.

    Example here:

    View post on imgur.com

Viewing 3 replies - 1 through 3 (of 3 total)
  • Couldn’t say without a link to your site. That’s not to say that somebody else might not just happen to know, but a link would make things a lot easier for the rest of us trying to help, if it’s possible, so we can check it out in Firebug.

    Cheers

    PAE

    Thread Starter JordyvanMeer

    (@jordyvanmeer)

    Yeah, you’re going to need a new rule for, I think:

    article.feature-image.small .entry-summary p a {
      /* Put the link foreground and background colours you want here:
       * e.g. */
      background-color: #FFF;
      color: #0066CC;
      text-decoration: underline;
    }

    and:

    article.feature-image.small .entry-summary p a:visited {
      /* Put the link foreground and background colours you want here
       * for the visited state */
    }

    and you’ll also need:

    article.feature-image.small .entry-summary p a:hover {
      /* Put the link foreground and background colours you want here
       * for the hover state */
    }

    HTH

    PAE

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[TwentyEleven – Showcase] Get rid of block around text in featured post’ is closed to new replies.