Home › Forums › Theme support › Caboom – Logo and menu not on same row › Reply To: Caboom – Logo and menu not on same row
Hi Mips,
I’m sorry, but we cannot check how much entries are in the menu and decide then if the theme is responsive or not, normally we have to adjust the header on small screens.
You can add the following code in WP admin -> Appearance -> Theme Options -> General -> Extra CSS Content, it should remove the logo to the left:
@media only screen and (max-width: 1059px) and (min-width: 768px)
#brand {
float: left !important;
width: auto !important;
}