Menu seems to be responsive. Is your issue fixed?
Ok, you can do it using media queries to play around with the menu on different devices.
The first bit of code makes the text slightly smaller on devices smaller than 820px when your menu starts to play up. The text change helps fit the menu in.
The second bit removes the changes you made when the device reaches the mobile navigation width.
Insert the code below, let us know how it looks and then come back if it does not work.
Remember to place the code in your “custom css” area or in your style.css file if using a child theme.
@media screen and (max-width: 820px) {
ul.nav li a {
font-size: 16px;
}
}
@media screen and (min-width: 768px) {
#header-right {
bottom: 0;
position: absolute;
right: 1%;
}
}
Thank you so much innuvo! That worked perfectly. I want to learn more about this as I am having problems with the transition from full size to mobile size on other sites I am working on. Any suggestions on places to spruce up on my knowledge on that?