-
AuthorPosts
-
November 20, 2019 at 9:41 pm #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/4RQsrgPThanks.
November 21, 2019 at 12:40 am #1158647Hey Jacopotj,
Can you provide a link to the site/page in question so we can look into this further.
Best regards,
Jordan ShannonNovember 21, 2019 at 3:00 am #1158682Hey, 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 postThanks ;)
November 21, 2019 at 6:22 am #1158709Hi,
Add this to quick css:
#footer a{ text-decoration:none!important; }
Best regards,
Jordan ShannonNovember 21, 2019 at 6:31 am #1158712Ok 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?November 21, 2019 at 6:51 am #1158719Hi,
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 -
AuthorPosts
- You must be logged in to reply to this topic.