This topic has 5 replies, 3 voices, and was last updated 8 years, 3 months ago ago by Robert Hall
How do I:
1. Remove the payment method icons from the footer?
2. Center the Copyright info?
3. Change the link hover color in the Copyright footer?
4. I would like to remove the underline from all links when they are hovered.
I was able to remove the payment icons, but I am still unable to center the Copyright.
Hello,
You can add this code in Custom CSS:
.row-copyrights .pull-left {
float: none !important;
text-align: center;
}
.copyright.text-color-light a:hover {
color: red !important;
}
a:hover {
text-decoration: none !important;
}
Regards,
Rose Tyler.
Thank you so much! One more thing for this topic… When I click the link it leaves a line under the link. Is there a way to remove it? And is there a way to have the menu links stay highlighted for the page that it is on? Like if I am on the CONTACT page, contact remains the hover color.
Hello,
Please try to add the following code in Global Custom CSS.
a:focus {
text-decoration: none !important;
}
.current-menu-item a{
color: #3284ef !important;
}
Regards,
Robert Hall
You must be logged in to reply to this topic.Log in/Sign up