Results 1 to 3 of 3
  1. #1
    Join Date
    Aug 2009
    Location
    Brisbane, Australia
    Posts
    5
    Plugin Contributions
    0

    Default Trying to centre site on screen

    Hi,

    I am relatively new to Zen Cart, so I apologise in advance!

    I am trying to centre my site on the screen - at the moment it is left aligned.

    I assume it is in the CSS that I have to make the changes but I am not sure what element to centre.

    my site is www.palletkings.com.au/zen

    your help is appreciated.

    Regards
    Mark

    ps I did try to search the forums first but could not find the answer..

  2. #2
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Trying to centre site on screen

    Code:
    /*wrappers - page or section containers*/
    #mainWrapper {
    	background-color: #ffffff;
    	text-align: left;
    	width: 750px;
    	vertical-align: top;
    	border: 1px solid #9a9a9a;
    	float: center;
    	}
    
    #headerWrapper, #contentMainWrapper, #logoWrapper, #cartBoxListWrapper, #ezPageBoxList, #cartBoxListWrapper ul, #ezPageBoxList ul, #mainWrapper, #popupAdditionalImage, #popupImage {
    	margin: 0em;
    	padding: 0em;
    	}
    float: center; is not a valid property value - you can use left, right or none.
    margin: auto; will do what you want.
    The #mainWrapper in the second rule makes the margin override the setting in the first rule. Remove #mainWrapper, from the second one.
    Code:
    /*wrappers - page or section containers*/
    #mainWrapper {
    	background-color: #ffffff;
    	text-align: left;
    	width: 750px;
    	vertical-align: top;
    	border: 1px solid #9a9a9a;
    	margin: auto;
    	}
    
    #headerWrapper, #contentMainWrapper, #logoWrapper, #cartBoxListWrapper, #ezPageBoxList, #cartBoxListWrapper ul, #ezPageBoxList ul, #popupAdditionalImage, #popupImage {
    	margin: 0em;
    	padding: 0em;
    	}

  3. #3
    Join Date
    Aug 2009
    Location
    Brisbane, Australia
    Posts
    5
    Plugin Contributions
    0

    Default Re: Trying to centre site on screen

    Thank you so much for your prompt & extremely helpful reply.

    Cheers & thanks again
    Much appreciated.

    Mark

 

 

Similar Threads

  1. v151 Trying to extend the descriptions in the featured products centre box
    By BoydBreen in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 13 May 2013, 06:32 PM
  2. Trying to change the width of pages on computer screen...
    By BenhamCollectibles in forum General Questions
    Replies: 26
    Last Post: 30 Dec 2009, 06:16 PM
  3. Blank screen when trying to run installer
    By digiwareelectronics in forum Templates, Stylesheets, Page Layout
    Replies: 6
    Last Post: 4 Feb 2009, 09:09 AM
  4. trying to centre logo
    By philpalmer in forum Templates, Stylesheets, Page Layout
    Replies: 10
    Last Post: 10 Apr 2008, 11:16 PM
  5. Error when trying to log in from customer screen
    By duquecigars in forum General Questions
    Replies: 7
    Last Post: 9 Apr 2008, 08:32 PM

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