Hi there,
- the
.x-sidebar .widget ul li an
is actually the CSS selector which you can use. And the text-decoration: none
is the code responsible to remove the underline. So kindly add the code below to Pro > Launch > Theme Options > CSS:
.x-sidebar .widget ul li a {text-decoration: none;}
- Unfortunately there is no built-in way to do so. THis goes to the customization process which is outside of our support policy. I suggest that you use a Javascript code to search for each anchor tag of the sidebar and compare it with the current URL of the page and if there is a match, you can change the color of the link. Something like this:
jQuery('.x-sidebar a').each(function() {
if (jQuery(this).attr('href') == window.location.href) {
jQuery(this).css('color', 'yellow');
}
});
The code above will change the link color to yellow, you can use any color code such as #ff0000
. Needless to say that this is only a starter help to give you an idea of how you can customize the current link. A further implementation is outside of our support policy.
- Our theme does not have such a functionality and you will need to do the customization for that. The request can be implemented with the combination of HTML CSS and Javascript coding. I did a Google Search for you which can be a good starting point for your customization.
Thank you.