Results 1 to 6 of 6

Hybrid View

  1. #1
    Join Date
    Feb 2008
    Posts
    17
    Plugin Contributions
    0

    Idea or Suggestion Moving the Left boxes out of the main area

    I'm not sure how to describe what I'm trying to do but here goes....

    this is what I've done for page layout so far. http://shop.catisfaction.net/index.php

    I shifted the main column of the page to the right so that I only have border on one side and added a border image (I know it doesn't go I'm just working on moving things at the moment will make them match later lol)

    What I would like to do is shift the logo and the left hand boxes (catagories etc) so that they are on the left hand border instead of inside the main column of the page.

    Does that make sense? does anyone have any suggestions of what I would need to change to do that?

    TIA

    Cat

  2. #2
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,755
    Plugin Contributions
    9

    Default Re: Moving the Left boxes out of the main area

    You are going to have to do quite a bit of css styling to get this look...

    Start by increasing the mainWrapper width to a wider fixed width, preferable or a higher %...

    You will then have to define widths and float for individual div containers
    Zen-Venom Get Bitten

  3. #3
    Join Date
    Nov 2006
    Location
    Dartmouth, NS Canada
    Posts
    2,378
    Plugin Contributions
    0

    Default Re: Moving the Left boxes out of the main area

    Take a look at either of my sites. I did essentially what you're trying to do, floating my logo top-left, adding a large top-margin to the first element in my left column to force it down below my logo, then getting rid of anything I didn't want at the top of the main column.

    I commented my stylesheet a little where I made the critical changes.

    Rob

  4. #4
    Join Date
    Feb 2008
    Location
    UK
    Posts
    10
    Plugin Contributions
    0

    Default Re: Moving the Left boxes out of the main area

    adding a large top-margin to the first element in my left column to force it down
    Could you give code to how you achieved this please?
    TIA

  5. #5
    Join Date
    Nov 2006
    Location
    Dartmouth, NS Canada
    Posts
    2,378
    Plugin Contributions
    0

    Default Re: Moving the Left boxes out of the main area

    Here are the three main elements I styled to push things around. First, lock the logo into the top-left corner...
    Code:
    #logo {
    	position: absolute;
    	top: 10px;
    	left: 10px;
    }
    Next, move the tagline over to the right...
    Code:
    #taglineWrapper { text-align: right; }
    Then, to answer your request, push the left column down to leave room for the logo. In my case, the top element in my left column is the cart summary. You'll have to decide which element to style based on your layout...
    Code:
    #cartsummaryHeading {
    	margin-top: 200px;
    }
    Finally, to let the whole page stay the desired width, but centered in any wider browser window...

    Code:
    #mainWrapper {
    	margin: auto;
    	top: 0px;
    	left: 0px;
     ... other styles here ...  }
    HTH

    Rob

  6. #6
    Join Date
    Feb 2008
    Location
    UK
    Posts
    10
    Plugin Contributions
    0

    Default Re: Moving the Left boxes out of the main area

    Thank you very much.

 

 

Similar Threads

  1. v151 Want to add an image to the left side of my template, preferable in the grey area.
    By SilverHD in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 3 Dec 2013, 05:32 AM
  2. v139h How do I move the entire "main content" area left or right?
    By Chargin in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 11 Feb 2012, 04:25 PM
  3. Where's the content of one of the boxes on the left?
    By janissaire in forum Templates, Stylesheets, Page Layout
    Replies: 5
    Last Post: 11 Feb 2010, 05:48 AM
  4. Replies: 25
    Last Post: 24 Jul 2009, 10:57 PM
  5. Removed all boxes to the left and now want to extend main page over.
    By estrange in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 13 Jun 2007, 09:20 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg