Hi there! I want to be able to style individual links on the navbar of a site I’m building for a client. So far I have followed the excellent advice offered in the forum link below, which has gotten me 90% of the way:
My result looks like this:
How can I get the ‘Join a party’ and the ‘Shop’ text to center to the white ‘button’ background? And will it compromise the mobile responsiveness?
Code used for both:
Join a party:
.x-navbar .desktop .x-nav > .menu-join > a {height: 80%; margin-top:8px; margin-right: 5px; background-color: white; border: 1px solid #fff; border-radius: 25px; color: #128798;}
.x-navbar .desktop .x-nav > .menu-join > a:hover {color: #a20078;}
Shop:
.x-navbar .desktop .x-nav > .menu-shop > a {height: 80%; margin-top:8px; background-color: white; border: 1px solid #fff; border-radius: 25px; color: #128798;}
.x-navbar .desktop .x-nav > .menu-shop > a:hover {color: #a20078;}
Thanks for any help you can offer!