Archived topic
Homage page nav aligning right in error
1 reply · Started by Mark on October 27, 2019
This is my homepage: https://staging.riddimstream.com as you can see the navigation is alligned to the right hand side, i dont want it to be like that, i want it to be like https://staging.riddimstream.com/digital-record-pool/
the nav appears correctly here https://staging.riddimstream.com/digital-record-pool/ its centred.
why does it appear to the right on the homepage but centred correctly on all other pages? How can we make it centred on all pages please?
Hi there,
You have this CSS on your site causing that:
.sf-menu {
font-family: 'Oswald',Tahoma;
line-height: 1;
float: right;
padding: 0;
position: relative;
margin: 26px 0 0 -20px;
font-size: 14px;
}
It's best to remove that CSS. If that's not possible, try adding this:
.main-navigation .sf-menu {
float: none;
}