Reply To: Mobile site doesnt look right

Homepage Community Forums Epik Theme Support Mobile site doesnt look right Reply To: Mobile site doesnt look right

#14412
Wes
Moderator

    @nickmustafa Try and remove the .title-area from the code on line 4019 in your style.css file. It is grouped in with the sidebar in the responsive section, which means when the site is viewed on a tablet or any other mobile device the title area and sidebar will adjust to 300px width…..and since your logo is larger than that we won’t need that code –

    	.sidebar-primary,
    	.title-area {
    		width: 300px;
    	}

    Change the above to this –

    	.sidebar-primary {
    		width: 300px;
    	}

    I don’t have an iPad either, but I can still assist in getting this fixed. Let me know if that helps.

    Also, one of the errors eric is talking about is this –

    background-position: center middle!important; should be this instead –

    background-position: center !important; There needs to be a space in between, and also, it supposed to be center instead of middle.