Theme Wordpress 'Minamaze' was not responsive when active

1

I applied the Minamaze theme of Wordpress which was chosen because it is responsive, but it does not stay when applied. The only plugin I have active is for an e-mail form ( contact form7 ). Version of wordpress is updated (% with%). It does not change layout in any of the tested browsers, nor in the mobile.

    
asked by anonymous 21.08.2017 / 16:05

2 answers

1

Hello,

By analyzing the page CSS reported in the link, it does not really seem to be ready for the responsive. I have identified in the file style.css of the theme, line 149 that has a declaration that leaves the fixed width. Changing from min-width to max-width layout already begins to be responsive.

So change on line 149 of style.css to:

body.layout-fixed,
body.layout-fixed #body-core,
body.layout-fixed #site-header,
body.layout-fixed #notification { 
    min-width: 960px;
}

And as the class itself says, .layout-fixed , it is likely that in the theme have some option that still converts and layout to responsive.

    
21.08.2017 / 16:58
0

I found out what was going wrong!

Theme Options > General Settings > Enable Fixed Layout in this option, it is NOT appropriate to call, as this is where the layout is no longer responsive. Check to enable fixed layout (i.e. Disable responsive layout)

I was beaten by this option from the other times ... #ficaadica!

But thanks for the help!

    
21.08.2017 / 19:43