Are you a GenerateCustomer?

Do you have an active GP Premium or GenerateBlocks Pro license key?

Create a GenerateSupport account for GeneratePress and GenerateBlocks support in one dedicated place.

Create an account
Already have a GenerateSupport account? Login

Just browsing?

Feel free to browse the forums. Support for our free versions is provided on WordPress.org (GeneratePress, GenerateBlocks).

Want to become a premium user? Learn more below.

Change color in body text blog post JAVA

  • Hey guys,
    I would like to change the color ONLY on the links in body copy of blog posts in JAVA template. Could you please helpt me witht he CSS? I can’t find the adjustments in the Customize section.
    Many thanks, Lotta

    PS. Please see example, scroll down on enclosed url for the link “nyckelord”

  • Hi there,

    to style the single post content links try this CSS:

    
    .single-post .entry-content :is(p, li) a {
        color: #f00;
    }
    

    This will apply only to links in Paragraphs and List items within the post content.

    If you want to style the underline too, then change it to this CSS:

    
    .single-post .entry-content :is(p, li) a {
        color: #f00;
        text-decoration-thickness: 3px;
        text-underline-offset: 3px;
        text-decoration-color: #000; 
    }
    
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.