I am working on my site and am having issues figuring a couple of things out. First one is I’m trying to center the woocommerce cart button so it doesn’t look out of place pushed up against the line break. Second if I go to the cart page of my site the hover links work but if I go to the main store page the hover links do not. How can I fix that and change the colors of the text, hover, and underline to match the color scheme of the site? The site is housed at https://www.earthtourists.com
Here is my custom CSS that I’ve added to achieve the color scheme so far:
.x-logobar {
background: transparent;
border-style: none;
border-color: rgb(0,0,0);
border-width: 0px;
box-shadow: none;
}
.x-navbar {
background: rgb(41,57,153);
border-style: none;
border-color: rgb(11,103,189);
border-width: 2px;
box-shadow: 2px 2px;
}
.x-colophon.top {
background: rgb(255,255,255);
border-style: none;
border-color: rgb(11,103,189);
border-width: 2px;
box-shadow: 2px 2px;
}
.x-colophon.bottom {
background: rgb(41,57,153);
border-style: none;
border-color: rgb(11,103,189);
border-width: 2px;
box-shadow: 2px 2px;
}
.x-widgetbar {
background: rgb(41,57,153);
border-style: none;
border-color: rgb(11,103,189);
border-width: 2px;
box-shadow: 2px 2px;
}
.x-btn-widgetbar {
border-top: 19px solid rgb(41,57,153);
border-left: 19px solid transparent;
border-right: 19px solid rgb(41,57,153);
border-bottom: 19px solid transparent;
color: rgba(255,255,255,0.5);
background-color: transparent;
}
.x-btn-widgetbar:hover {
border-top: 19px solid rgb(41,57,153);
border-left: 19px solid transparent;
border-right: 19px solid rgb(41,57,153);
border-bottom: 19px solid transparent;
color: rgba(255,255,255,0.5);
background-color: transparent;
}
.x-icon-facebook-square:hover {
color: rgba(255,255,255,0.5);
}
.x-icon-instagram:hover {
color: rgba(255,255,255,0.5);
}
.x-scroll-top {
color: rgba(255,255,255,0.5);
}
.x-scroll-top.in {
color: rgba(255,255,255,0.5);
}
a.x-scroll-top {
border-color: rgba(255,255,255,0.5);
color: rgba(255,255,255,0.5);
}
I appreciate any help or direction I can get cause it’s bugging me.