-
AuthorPosts
-
November 5, 2014 at 1:45 pm #346489
Hi guys, I’m trying to implement BBpress currently and when I’ve tried to set up the sidebar it’s appearing underneath the content in a 100% width column (not in its 40% column on the right side). This problem happens across the entire site no matter where I try to display a sidebar.
I’ve already updated my parent theme’s files to the latest version and had a play around with the dimensions – still doesn’t seem to want to work.
Thanks in advance,
Kris
- This topic was modified 10 years ago by Kris1711.
November 5, 2014 at 10:38 pm #346810Hi Kris1711!
First off go ahead and update Enfold to 3.0.2. Your currently using 3.0. Also double check to see if disabling all plugins fixes it.
If your still having problems after those two steps then let us know and we’ll take a closer look.
Cheers!
ElliottNovember 10, 2014 at 12:31 pm #348716This reply has been marked as private.November 10, 2014 at 5:01 pm #348864Ok I’ve found the problem – which is really strange! When I’m in general layout -> dimensions, changing settings in there has no effect on the code. Weird huh?
So how I fixed it was changing this:
.responsive #top #main .sidebar.smartphones_sidebar_active {
display: block;
text-align: left;
border-left: none;
border-right: none;
border-top-style: dashed;
border-top-width: 0px;
width: 100%;
clear: both;
}To this:
.responsive #top #main .sidebar.smartphones_sidebar_active {
display: block;
text-align: left;
border-left: none;
border-right: none;
border-top-style: dashed;
border-top-width: 0px;
width: 40%;
clear: none;
}Wonder why changing theme settings didn’t change this code?
Cheers,
KrisNovember 10, 2014 at 6:17 pm #348901This reply has been marked as private.November 11, 2014 at 1:07 am #349151Hi!
It’s displaying fine on my end. Did you get this sorted?
Cheers!
Elliott- This reply was modified 10 years ago by Elliott.
November 11, 2014 at 11:54 am #349279This reply has been marked as private.November 11, 2014 at 7:03 pm #349608Hi!
It looks like you still have some custom CSS that is affecting it in your child theme style.css file.
.responsive #top #main .sidebar.smartphones_sidebar_active { border-left: medium none; border-right: medium none; border-top-style: dashed; border-top-width: 0; clear: both; display: block; text-align: left; width: 100%; }
The width: 100% is messing with it.
Best regards,
ElliottNovember 11, 2014 at 8:34 pm #349653Silly me :D. Thanks a lot, much appreciated!
-
AuthorPosts
- The topic ‘Issues with sidebar’ is closed to new replies.