-
Author
-
February 27, 2017 at 16:18 #154260gfischParticipant
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.February 28, 2017 at 17:43 #154380LauraModeratorHello, 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 solutionLaura 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 🙂
February 28, 2017 at 19:02 #154396RaduModeratorHi,
Upload the attached file after you unzip it to wp-contentthemeskleo-childand in functions.php from child theme add this code
COPY CODEif (!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 solutionAttachments:
You must be logged in to view attached files. -
AuthorPosts
You must be logged in to reply to this topic.