smallwonder442
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Alante] Why dosen’t sidebar work?Sort of. I created a workaround by adding this custom CSS
/* My solution for fixing the div issue on archive pages */
@media screen and (min-width: 690px) {
div#primary.content-area{
max-width: 70% !important;
float: right;
}div#sidebar{
width: 25% !important;
float: left;
}
}Forum: Themes and Templates
In reply to: [Alante] Why dosen’t sidebar work?Hi,
I’m having the same problem. On WooCommerce pages the sidebar shows up under the content instead of on the left side where I want it. Can you help?
https://www.detroitblockandtop.comI ended up contacting the Developer through another method and they were able to resolve my problem. It was an issue with that employee’s spam filter.
I had that employee add my email address to her address book and the Shiftcontroller developers “applied a small fix to the email sending part” to remove any weird characters that might show up in emails from Shiftcontroller.
marking this as resolved
Forum: Themes and Templates
In reply to: [OnePress] Add Sidebar to Front PageI fixed it! When I reviewed the code inside the Woocommerce Template file (woocommerce.php) I noticed this bit of code:
<div id=”content-inside” class=”container no-sidebar”>So in the woocommerce.php file in my Child Theme I changed it to read:
<div id=”content-inside” class=”container left-sidebar”>
and added
<?php get_sidebar(); ?>
immediately under that.Problem solved. Thanks!
Forum: Themes and Templates
In reply to: [OnePress] Add Sidebar to Front PageThanks for the help. I created the new template file and added it to my Child Theme but that didn’t work either.