Site logo

Archived topic

Change Underline Color Line Only

5 replies · Started by Franklin on June 22, 2020

Viewing posts 1–6 of 6

Hi,

I would like to have the color of the underline to be yellow. And not the complete text on hover.
https://wearholic.com/

I have tried the following but it doesn't work.

.wp-show-posts-entry-title:hover{
text-decoration:underline;
text-decoration-color: yellow !important;

}

Hi there,

try this CSS instead:

.wp-show-posts-entry-title:hover a {
    border-bottom: 1px solid yellow;
}

thanks David.

How to get the menu items to be displayed at the top right instead of the center.

https://wearholic.com/

Please check I've added 2 items in the menu.

The site library import added this CSS to the Customizer > Additional CSS:

.main-navigation .main-nav {
    text-align: center;
}

Remove that

Thanks David!!!

You're welcome

This archived topic is closed to new replies.