Inset width-How to change?

March 2014 WordPress Theme
GK User
Mon Jun 08, 2015 2:45 pm
Hello,

How to change inset width?

I found option in Theme option->Layout->Inset width. But always Inset is the same width(30% and 70% gk-content-wrap).
User avatar
Junior Boarder

GK User
Wed Jun 10, 2015 7:14 am
Hello,

You're right, there's a bug in News2/layouts/responsive_css.php file, please change the following lines:
Code: Select all
#gk-inset { width: <?php echo get_option($gk_tpl->name . '_inner_width', '30'); ?>%;}
   #gk-content-wrap { width: <?php echo 100 - get_option($gk_tpl->name . '_inner_width', '30'); ?>%; }


to:
Code: Select all
#gk-inset { width: <?php echo get_option($gk_tpl->name . '_inset_width', '30'); ?>%;}
   #gk-content-wrap { width: <?php echo 100 - get_option($gk_tpl->name . '_inset_width', '30'); ?>%; }


We'll fix the issue with the next theme update. Thank you for your feedback.
User avatar
Moderator

GK User
Wed Jun 10, 2015 10:16 am
Thx! Great support! Problem solved!
User avatar
Junior Boarder


cron