widget placement on home page
- The topic ‘widget placement on home page’ is closed to new replies.
Need help? Check out our Support site, then
Hi, I’d like to place the home page widget to the right of the content on the top of the page. It defaults to the bottom of the page. I tried playing with the width of the content and the widget but no go. Changing the float works but still can’t get it to the top. Any ideas?
Here’s the URL: https://ebbettsgoodtogo.wordpress.com/
Thanks!
The blog I need help with is: (visible only to logged in users)
You can try the following CSS below, which should get you off to a pretty good start.
.home.page .content-area {
width: 70%;
}
.widget-area--home-widgets {
clear: none;
float: left;
width: 30%;
}
.widget-area--home-widgets .block-grid-item {
padding: 0;
width: 100%;
}
Awesome! Worked like a charm.
Thanks!
Great, glad to hear it!