Jump to content

Logo Size


Graham

Recommended Posts

In the Foundation skin template main.php, near line 35:

Find:

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

Change to:

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

For that row, we are changing the ratio of the logo area to searchbar area from 3:9 to 8:4 when viewed on a large width browser window. (We are also changing the ratio when viewed on a small and medium width browser window from 4:8 to 12:12 - which forces the two areas to stack instead of sitting side-by-side.)

You may need to have CubeCart clear its internal cache of rendered skin templates (admin, Maintenance, Rebuild tab).

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...