Show right sidebar on mobile view

March 2014 WordPress Theme
GK User
Mon Nov 09, 2015 4:32 am
Hi Piotr,
What I have to do to show the SIDEBAR RIGHT column (or the INSET) also in the mobile and tablet view, next to mainboby?

I need to do this because I have to show the banners on the top, not on the bottom...

Thanks
User avatar
Fresh Boarder

GK User
Mon Nov 09, 2015 9:34 am
Hi,

Try to add the following code into the theme’s css/override.css file (make sure to enable the “Use the override.css file” option in Template options > Advanced in the WordPress backend)

Code: Select all
@media (max-width: 1100px) {
   #gk-mainbody-columns {
   width: 73%!important;
   }

   #gk-sidebar-right {
   width: 23%!important;
   min-width: 23%;
   }
}


but it's only beginning, because generally there's no enough space on mobile devices for sidebar - that's why they are displayed at the bottom. You should also customize the widgets inside and change other small visual issues - unfortunately it's beyond our technical support.
User avatar
Moderator

GK User
Mon Nov 09, 2015 5:32 pm
ok thank you Piotr, I tried and it works.
User avatar
Fresh Boarder


cron