Right sidebar jumped down for no obvious reason
-
It’s making me crazy. As far as I can tell, I didn’t change anything in the CSS, but I can’t get the widget sidebar back in place.
Thanks.
The blog I need help with is: (visible only to logged in users)
-
Hi there!
Copywow.com is a self-hosted version of WordPress (i.e. not hosted on WordPress.com). Support for that is available over at WordPress.org, here’s a link: http://wordpress.org/support/
(Also this, to go directly to the Themes and Templates forum: http://wordpress.org/support/forum/themes-and-templates)
Good luck!
-
hafizr beat me to it, but before he did I figured out the issue, so I figure I won’t let that effort go to waste lol I’ll help you out here just this once :P
In your HTML, find the <div> directly after this one:
<div id="content" class="site-content clearfix">It looks like it’s on line 69 of your HTML source code and should look like this:
<div class="container_16 clearfix">Now, give it an id so it’s like this:
<div id="example" class="container_16 clearfix">Then, in your CSS, select the id and add an :after pseudo element:
#example:after { }Then add a display property to this rule with the value inline:
#example:after { display: inline; }That should do it! See you at WordPress.org next time!
-
- The topic ‘Right sidebar jumped down for no obvious reason’ is closed to new replies.