Jump to content

[Resolved] Template set width set to full


drupopuppis

Recommended Posts

We can help best if we can access your site.

I'm going to say Minimalizer is based on Foundation. That means Minimalizer is "responsive and will be as wide as the screen - up to a point.

Ugh! Ignore what follows.

===

In foundation.css, you will disciiover the widths of the various named sizes -- based on the width of the capitol letter M of the font being used.

Let's look at the template main.php:

Line 59:
<div class="small-5 medium-4 large-3 columns">

We note that the largest width being used is 'large'. In foundation.css, line 36, large is defined as 64 M's. You can try replacing "width: 64.063em;" with "min-width: 64.063em;".

===

Try this:

There is probably a CSS rule in foundation.css named .row. which is set to max-width: 62.5em;. You can override that by adding a rule in cubecart.default.css.

.row { max-width: 500em; }

Be advised that everything will scale up accordingly.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...