How do i move the sidebar or widget area to the top of the page?
-
i want to move my sidebar up to the top of the page beside my header picture
The blog I need help with is: (visible only to logged in users)
-
Try adding this to your Appearance → Custom Design → CSS editor:
@media screen and (min-width: 960px) { .widget-area { margin-top: -410px; } }The @media part of this example will make it so the change only applies when the site is viewed on a large screen and the sidebar will drop back down when viewed on smaller devices like iPads or mobile phones.
- The topic ‘How do i move the sidebar or widget area to the top of the page?’ is closed to new replies.