I have a Quick CSS code that I need someone to take a look at. When I remove this code below, it looks great on my Mobile view, but messes up on the Desktop view. Can you help with this and any other help with my current codes? Thanks!
.responsive #top .slideshow_caption {
padding: 25px;
}
}
Hi bemodesign,
I think the desktop is messed up when you remove it because you are removing an extra }, just remove this code and that should only affect the mobile version.
.responsive #top .slideshow_caption {
padding: 25px;
}
Best regards,
Nikko
your awesome! thanks
Last issue if you could please help. On desktop, I have the Secondary menu on the top right and the Phone number on the top left. But on mobile view, the Phone number is below the menu still. How can I switch these?
Hi bemodesign,
Please try to add this CSS code:
@media only screen and (max-width:767px) {
.responsive #header_meta .container {
display: flex;
flex-direction: column-reverse;
padding: 12px 0 8px;
}
}
Hope it helps :)
Best regards,
Nikko
That worked! And do you know how to remove that “|” after the top menu item?