Wordpress theme 'Minamaze' was not responsive when active

Asked

Viewed 85 times

1

I applied the theme Minamaze of Wordpress which was chosen to be responsive, but it does not get when applied. Only plugin I have active is for an email form (contact Form7). Version of wordpress is up to date (4.8.1). It does not alter the layout in none of the browsers tested, nor in cellular.

  • Post at least the blog link, some code. There’s no way to know without having anything to see.

  • sorry... follow link: http://plusagencia.com.br/site/plus

  • You have some custom css?

  • I am avoiding to touch the codes, I know this is complicated if something goes wrong... the only thing I changed, was to remove the signature of the theme and the wordpress mark. everything else is standard.

2 answers

1

Hello,

Analyzing the CSS of the page reported on the link, it doesn’t really seem to be ready for the responsive. I identified it in the file style.css theme, line 149 which has a statement that leaves the width fixed. Changing from min-width for max-width the layout already begins to behave as responsive.

So change the 149 line 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 has some option that still convert and layout to responsive.

  • It worked out, Diego! I changed this setting you said and it’s already gotten better... but it’s still very strange: menu and other elements... but I thought that these settings were automatic, since in the theme, when I put 'preview' it appears responsive. But I’ll take another look at the options and see if I can find any mention of switching to responsive as a whole. Thank you so much for helping Diego!

0

I found out what was 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 passed beaten this option the other times... #stay!

But thanks for your help!

Browser other questions tagged

You are not signed in. Login or sign up in order to post.