This topic has 2 replies, 3 voices, and was last updated 7 years by Radu.

  • Author
  • #154260
     gfisch
    Participant

    Hello

    I would like to be able to add a 5th footer column.

    I have modified the CSS with your help, so that more avatars get displayed. This works fine. The only issue is that now the 4 default footer columns are left aligned. There would be space for a 5th one.

    Is it possible to add a 5th column? Best would be to have another option in the Widget settings.

    An alternative would be to center the 4 footer columns.

    BTW – I have created a more vanilla version of the slider graphics (for the support cycle). Actually I do like it better myself 😉

    Regards

    Andreas

    Attachments:
    You must be logged in to view attached files.
    #154380
     Laura
    Moderator

    Hello, will assign the ticket to a higher support level who can help and advise you in your query.
    Thanks! ?

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    #154396
     Radu
    Moderator

    Hi,
    Upload the attached file after you unzip it to wp-contentthemeskleo-child

    and in functions.php from child theme add this code

    COPY CODE
    
    
    if (!function_exists('kleo_widgets_init')):
    	/**
    	 * Registers our main widget area and the front page widget areas.
    	 *
    	 * @since Kleo 1.0
    	 */
    	function kleo_widgets_init() {
    		
    		register_sidebar(array(
    			'name' => 'Footer column 5',
    			'id' => 'footer-5',
    			'before_widget' => '<div id="%1$s" class="widget %2$s">',
    			'after_widget' => '</div>',
    			'before_title' => '<h4 class="widget-title">',
    			'after_title' => '</h4>',
    		));
    		
    	}
    endif;
    add_action( 'widgets_init', 'kleo_widgets_init' );
    

    Then you will have five columns in footer

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    Attachments:
    You must be logged in to view attached files.
Viewing 3 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic.

Log in with your credentials

Forgot your details?