I was experiencing problems trying to see changes after editing style.css and my sidebar was showing at the bottom as well. I just refreshed the page and Viola! everything was ok. Try refreshing the page to see it that helps you as well.
I tried that; it didn’t work. As you can see form the screenshots even the container sizes are off…
I tried adding more posts to see maybe that will move the sidebar to the side, but i pushes it even more down.
Hi @slado777,
Can you please give link on your site? There can be couple reasons of this problem:
1) In 2.0 was changed Twitter Bootstrap version and old bootstrap css maybe was cached in your browser, to check it – try to open site in another browser, where you didn’t opened it before.
2) If you use some caching plugin on your site – they may cache old version of your pages with incompatible HTML markup, if you use such plugins – try delete old cache – such option or similar must be in each of this plugins.
3) If you use child theme and rewrite there some theme templates – replace in them bootstrap layout classes with new – for example ‘span8’ -> ‘col-md-8’, ‘span4’ -> ‘col-md-4’ etc. In 2.0 there are no backward compatibility for child themes based on old versions – it was our mistake, we’ll fix it with future updates.
If you give link on your site – I’ll could find reason in your case
Zenoflove.ru
I tried clearing cashe, it didn’t help. I haven’t changed any page templates. I only translated some strings in php files which I copied to the child theme. Opening in different browsers gave same result.
I figured it out.
1. In my child theme, in any php files that I edited (archive.php, search.php, etc) i changed ‘span8’ -> ‘col-md-8’
2. In order for style.css override bootstrap.css I copied the theme header and created my child header.php. Then copied this
<link href=”<?php echo get_stylesheet_directory_uri(); ?>/style.css” rel=”stylesheet”>
****(/style.css your child css style sheet)****
directly BELOW ‘<?php wp_head(); ?>’ line of code in header.php
Here’s the link where I found the solution link