Right sidebar
Support Area › Forums › Foxy › Right sidebar
Tagged: Sidebar
- This topic has 9 replies, 2 voices, and was last updated 11 years ago by
Bill Robbins.
-
AuthorPosts
-
October 20, 2014 at 13:22 #23376
Ian Beyer
ParticipantIs there a way to move the sidebar to the right of the main content area rather than below the menu on the left?
October 20, 2014 at 13:34 #23377Bill Robbins
ParticipantHello Ian,
You can swap them around. Here’s how:
- Go to the Theme Options page and select the Styling tab.
- Scroll down to the Custom CSS box and add this:
#sidebar { float: right; } #content { float: left; } - Save your changes.
That should swap the sidebar to the right hand side. If you have any questions or trouble, let me know.
Thanks,
BillOctober 20, 2014 at 13:36 #23378Ian Beyer
ParticipantWill that keep the menu on the left?
October 20, 2014 at 13:37 #23379Bill Robbins
ParticipantGood question. The widgets and navigation menu are in the same container so you’ll have to move them together.
October 20, 2014 at 13:39 #23381Ian Beyer
ParticipantOK, I need to split them up somehow – There’s a lot of empty space on the right and the sidebar is rather long.
Also, is there a header widget area?
October 20, 2014 at 14:04 #23383Bill Robbins
ParticipantProbably the easier option would be to add a second sidebar that is on the right hand side of the content. I did notice that you’re running an old version of the theme. Before diving into a lot of edits, I would suggest updating to the current version. It handles the space of the content area a bit differently so it fills the full width of the content wrapper instead of having that space on the right.
You can download the theme from our support site here. You can unzip the foxy.zip file and rename the folder foxy-update and then zip it back up. From there you can install it just like you would a new theme.
After that if you still need to add in a new sidebar either to the right hand side or the header, let me know and I can show you how to do that.
Thanks,
BillOctober 20, 2014 at 15:03 #23387Ian Beyer
ParticipantEek, apparently my fonts all changed when I did the update. I must have had some custom mods in there.
October 20, 2014 at 15:06 #23388Ian Beyer
ParticipantAnd my heading font isn’t in the list… How do I add a google font to the font list?
October 20, 2014 at 15:28 #23389Bill Robbins
ParticipantIf you installed by changing the folder name, the original theme will still be there in case you need to pull any code out of it.
The way to add a new font is to use the @import option for adding the font to your site. You’ll add something like this to the Custom CSS or a child theme:
@import url(https://fonts.googleapis.com/css?family=Open+Sans);That will load up the font. Then you can use it for heading by adding something like this to the Custom CSS:
h1, h2, h3, h4, h5, h6 { font-family: 'Open Sans', sans-serif; }which will apply that font to the headings.
October 20, 2014 at 15:34 #23390Bill Robbins
ParticipantYou’re more than welcome to edit the theme and add fonts that way. The only drawback is it makes updating more difficult in the future.
You might want to disable the automatic theme updates options in the theme options page to make sure you don’t lose your changes via a theme update.
-
AuthorPosts
- The topic ‘Right sidebar’ is closed to new replies.
