Hey gents, any easy way to increase the width of this side column?
Thanks,
Justin
Hey Justin!
Thank you for using the theme.
Are you referring to the sidebar? You can add this on functions.php to increase the sidebar width:
function avia_increase_sidebar_size() {
global $avia_config;
$avia_config['layout']['fullsize'] = array('content' => 'twelve alpha', 'sidebar' => 'hidden', 'meta' => 'two alpha', 'entry' => 'eleven');
$avia_config['layout']['sidebar_left'] = array('content' => 'eight', 'sidebar' => 'four alpha' ,'meta' => 'three alpha', 'entry' => 'eight');
$avia_config['layout']['sidebar_right'] = array('content' => 'eight alpha', 'sidebar' => 'four alpha', 'meta' => 'three alpha', 'entry' => 'eight alpha');
}
add_action( 'init', 'avia_increase_sidebar_size', 1);
Regards,
Ismael
Hi!
Glad it is working.
If you want to remove the image overlay, use this on Quick CSS:
.image-overlay {
background: transparent;
}
Add a new icon using this:
.image-overlay.overlay-type-extern .image-overlay-inside:before {
content: url('IMAGE URI HERE');
font-family: 'entypo-fontello';
}
Cheers!
Ismael
Perfect :) Thank you Ismael!