Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1158610

    Hi, guys, here, as promised, with part two of thinks that I couldn’t do by mysekf (sorry but my work is not coding)

    1) Remove link decofration (underline) from footer links.
    I added a code to always display underline on links, but it applies on footer too.
    So either remove the footer or correct the code i added so that it applies just to the content of articles and pages :)

    This cose added – applies to footer and some other things too

    #main p a { text-decoration: underline; }

    2) THIS IS A RECCOMENDATION I DO ALSO TO YOUR DEFAULT SETTINGS
    On the “you might also like articles”, (the reccomended articles at the end of article) the icon on hover is a pencil which looks like you can edit the article.
    I would like to change it to some text or another icon, how to do it?
    Image: https://ibb.co/4RQsrgP

    Thanks.

    #1158647

    Hey Jacopotj,

    Can you provide a link to the site/page in question so we can look into this further.

    Best regards,
    Jordan Shannon

    #1158682

    Hey, i didnt put a link as i dont think its need as this being general coding and a image was added to.
    Anyway, here s a link where you can find both of the things i was referring to – see first post

    Thanks ;)

    #1158709

    Hi,

    Add this to quick css:

    #footer a{
    text-decoration:none!important;
    }

    Best regards,
    Jordan Shannon

    #1158712

    Ok thanks a lot!

    To have less css, Isn’t there a way to edit the first css i added so that it doesn’t apply to footer too nut just to the body of articles and pages?

    This is css i used

    #main p a { text-decoration: underline; }

    If not, thanks anyway.

    Also, what about the second issue there?
    Changing the hover icon of articles reccomended at the end of article?

    https://ibb.co/4RQsrgP

    #1158719

    Hi,

    No you need explicitly target the footer to not have the decoration.

    For #2 add this to quick css. Adjust text to whatever you want:

    .related-format-icon-inner::before{
    content:"Learn More"!important;
    font-size:12px!important;
    }

    Best regards,
    Jordan Shannon

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.