Hi there,
It is happening because in style.css file of your theme,
#primary {
float: right;
width: 66.6666%;
}
the float right is setting the right alignment of the content.
It is not advisable to modify the style.css file. Hence, I would suggest you to contact to the theme developers. They’ll be able to help you better way! 🙂
Thanks,
Archana.
Hi Archana,
The theme developers are providing much support so looks like I am going to have to change it my self, want to try avoid using a different theme as I have invested time into this one. Could you provide suggestions on what the style.css line should be? Also below is the single.php code as the problem may also lie there.
http://pastebin.com/BC6mFNfc
Your help is much appreciated.
Thanks
Hi there,
You may find the code here
http://pastebin.com/VFtjRy7a
at line number 2025.Just change it to
#primary {
float: none;
width: 100%;
}
Hope this will work for you!
Thanks,
Archana.
Thank you very much Archana, this worked a treat.
I am glad that I could be of any help! 🙂
Thanks,
Archana.