Jump to content

Foundation: Search Box too long


vidmarc

Recommended Posts

In the template main.php:

Near line 59, find:

<div class="row marg-top" id="top_header">
   <div class="small-4 large-3 columns">
      <a href="{$STORE_URL}" class="main-logo"><img src="{$STORE_LOGO}" alt="{$CONFIG.store_name}"></a>
   </div>
   <div class="small-8 large-9 columns nav-boxes">

The top header is split into two parts:
small-4 large-3
small-8 large 9

Note how each size adds to 12 columns.

Change to:

<div class="row marg-top" id="top_header">
   <div class="small-4 large-5 columns">
      <a href="{$STORE_URL}" class="main-logo"><img src="{$STORE_LOGO}" alt="{$CONFIG.store_name}"></a>
   </div>
   <div class="small-8 large-7 columns nav-boxes">

This gives more room to the logo half of the row,
less room to other half. Adjust to suit.

You may need to clear CubeCart's cache (admin, Maintenance, Rebuild tab, Clear Cache).

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...