Twenty Seventeen: links in footer text widget
-
Hi
Two questions about the text widgets for the footer in theme Twenty Seventeen:
1) I would like to suppress ‘underline’ for the links, only show the line in the hover state.
2) Can I set relative links? At the moment, ‘About’ and ‘Contact’ have the full URL, although they are pages within the same site.
Thank you :-)
The blog I need help with is: (visible only to logged in users)
-
-
Hi, that underline is done with a box shadow. Add this to your custom CSS.
.entry-content a, .entry-summary a, .widget a, .site-footer .widget-area a, .posts-navigation a, .widget_authors a strong { -webkit-box-shadow: none; box-shadow: none; } .entry-content a:hover, .entry-summary a:hover, .widget a:hover, .site-footer .widget-area a:hover, .posts-navigation a:hover, .widget_authors a:hover strong { -webkit-box-shadow:inset 0 0 0 rgba(0,0,0,0),0 3px 0 currentColor; box-shadow:inset 0 0 0 rgba(0,0,0,0),0 3px 0 currentColor; } -
Thank you, thesacredpath :-)
Working fine (I reduced it a bit to only affect the widget in the footer).
-
- The topic ‘Twenty Seventeen: links in footer text widget’ is closed to new replies.