Hi there,
Umbra’s widgets do only appear on single posts and pages. If you’re comfortable making a child theme, it wouldn’t be too hard to move the widgets over into the left sidebar, but creating a whole new sidebar area on the right is a lot more difficult since there isn’t currently a container to put them in.
If you were interested in moving them over to the left, here’s what you could do:
- Copy over
single.php
, page.php
, attachment.php
, and header.php
into your child theme.
- Copy the line
<?php get_sidebar(); ?>
from either single.php
, page.php
, or attachment.php
and paste directly under </nav><!-- #social-navigation -->
on line 53 of header.php
.
- Remove
<?php get_sidebar(); ?>
from single.php
, page.php
, and attachment.php
.
- Add some new widget styles to your style.css to remove floating on widgets and make them 100% width. You’ll also need to update the font color. White is probably your best bet.
I’ve put together a quick child theme with these steps: https://cloudup.com/cZ1FlIAA749
If you do want them on the left, you’ll need to do a lot more tweaking. I’m not totally sure what the best way to approach adding the sidebar on the right would be. You might be able to leave them where they are and just restyle with absolute positioning, like so:
.widget-area {
margin-top: 60px;
margin-left: 0;
margin-right: 0;
position: absolute;
top: 0;
right: -170px;
}
.widget-area .widget {
float: none;
padding: 0;
width: 100%;
}
That totally breaks the layout when you get down to tablet size, though, so you’d need to restyle once you hit the different breakpoints in the theme.
Hope this helps!