• Resolved persist9

    (@persist9)


    I would like to change the caption under my image blocks.
    For example, the heading just above the top left graph “air temperatures are increasing” on page:
    https://www.feedbackreigns.net/evidence/

    The caption is currently coloured grey and not underlined.
    I want it to be coloured blue and underlined, like the links in my paragraph block further down this page under the heading “evidence of human causation”

    I’m using the atomic blocks theme and Gutenberg editor

    I have asked the same question about links in other blocks. Why does the atomic blocks theme present some links with colour and underlined and other links in grey and not underlined. Is there a way of getting uniformity in link presentation without including CSS for many block types.

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • .site-content .site-main a {
      color: #3672c1;
      text-decoration: underline;
    }
    
    .entry-content p a {
      box-shadow: none !important;
    }

    The first part should cover all links in the main content area to turn them blue and then underline. The second part removes a double underline that shows up in some links in the content caused by the first one.

    Thread Starter persist9

    (@persist9)

    Hello Jarret
    Can I just use the above two CSS statements – and delete the earlier CSS formating statements: one for my links in dot points, and the second for my links in headings level 4.
    Thanks for assisting me yet again.

    Uhhh….most likely yes. I think the above code should take over for those as well.

    Thread Starter persist9

    (@persist9)

    I just added the extra CSS and it is working. I’ll try removing the previous CSS to see if it still works – so I do not repeat CSS instructions unnecessarily. Thanks. Fixed.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘CSS for formatting the caption under image blocks’ is closed to new replies.