Manifest widget help

  • Unknown's avatar

    Can anyone help me with the following request. I would like to put my widgets on the right hand side of my “MANIFEST” layout. Does anyone know how to adjust this?

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    There are several different ways you could approach this. Here is one example to get you started. It takes the entire footer and moves it up and to the right of the main content column:

    body {
    	position: relative;
    	width: 1020px;
    	margin: 0 auto;
    }
    #site-wrapper {
    	margin: 0;
    }
    #footer {
    	position: absolute;
    	top: 70px;
    	right: 0;
    	width: 500px;
    }
  • The topic ‘Manifest widget help’ is closed to new replies.