Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #307516

    Hey gents, any easy way to increase the width of this side column?
    Thanks,
    Justin

    #307687

    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

    #308053
    This reply has been marked as private.
    #308167

    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

    #308974

    Perfect :) Thank you Ismael!

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Increase width of side column’ is closed to new replies.