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 briefcasebombshell.com.
WordPress.com is an easy way to start blogging. Get a blog, check out our features, read the latest announcements, choose from great themes, or learn about the team behind it.
Need help? Check out our Support site, then
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 briefcasebombshell.com.
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;
}
This topic has been closed to new replies.