Tagged: 

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #1466648

    I’m using this quick CSS to underline links in the body area of my site:

    .avia_textblock p a, .avia_textblock li a, {
    text-decoration:underline !important;
    }

    I would also like links in my footer and an accordion to be underlined. What code can I add to make that happen?

    Thanks!

    #1466676

    Hey reesm2,

    Could you post a link to the site in question please?

    Best regards,
    Rikard

    #1466720
    This reply has been marked as private.
    #1466762

    Hi,

    Thank you for the info.

    Please add this css code to underline every link in the footer container:

    #footer a {
        text-decoration: underline;
    }

    Best regards,
    Ismael

    #1466853

    Thanks Ismael,

    That code worked. My Quick CSS box now looks like this:

    .avia_textblock p a, .avia_textblock li a, {
      text-decoration: underline;
    }
    
    #footer a {
        text-decoration: underline;
    }

    The code to underline links in paragraphs and lists in the main area no longer works. Can you please advise what I need to change?

    #1466868

    Hi,

    Try to include this css code to underline every links in the main container:

    #top .entry-content-wrapper a:where(:not(.wp-element-button, .avia_iconbox_title, .avia-button)) {
        text-decoration: underline;
    }

    Best regards,
    Ismael

    #1466912

    Thanks Ismael – that achieved exactly what I needed!

    #1466925

    Hi,

    Thanks for the update. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1466926

    This topic can be closed. Thanks!

    #1466958

    Hi,

    Thanks for letting us know. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Quick CSS in Footer and Accordion’ is closed to new replies.