Tagged: ,

Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #865933

    Hi, I read few topis and I was searching some help with oncle google but no results.
    I saw topics:
    https://kriesi.at/support/topic/6-columns-in-footer/#post-138601
    https://kriesi.at/support/topic/add-extra-row-in-footer/
    but It didnt helped… didnt work.
    In Enfold Child -> Footer -> Footer Columns …are still only 5 widgets…

    How to add a new row above 5 widgets that are now in footer, and to this row add 2 more widgets with 2/3 and 1/3 width ?

    ps. my website is hidden so I cant send login and address…

    Thank You

    #866220

    Please help…

    #866223
    #866492

    I saw this and its working for me but how to edit this, to do the part with “2/3 and 1/3 width” ?

    #866748

    Hi,

    Can you please post a link to your website so we can provide you an accurate code?

    Best regards,
    Yigit

    #866766

    I would like to post a link but its local only.
    Please post an example, info where to do this, and I will try to inculde it to my website.

    #866940

    Hi,

    To provide you an appropriated code, youll need to provide us a live link. Unfortunately, we cant do many things when we`re talking about local sites.

    Best regards,
    John Torvik

    #867041

    But I dont want a 1:1 code… only a example how to:
    – add 2 more widgets in one row
    – style it to have 2/3 and 1/3 columns in it…

    … its nothing special…

    I cant send You a link because I develop it in my local pc environment before I send it to web server / hosting.

    Theme is now clean… so its a standard theme downloaded after payment in themeforest…
    Please show me how to do this on standard child theme without any modification…

    Could You Please ?

    #867087

    Hi,
    Please go to Appearance > Widgets > Enfold Custom Widget Area and create a new widget area with the name “abovefooter” and then go to Appearance > Editor and edit functions.php file and add following code:

    add_action('ava_before_footer','avia_above_footer');
    function avia_above_footer(){
    dynamic_sidebar( 'abovefooter' );
    }

    Then add your two widgets:
    2017-10-21_122429
    Then you will need to know the IDs for the two widget, so open your developer tools (F12) (Chrome Windows 10) and find them:
    2017-10-21_123534
    Then you can add this code in the General Styling > Quick CSS field using your IDs:

    #text-6 { width: 66%;
        display: inline-block;
    }
    #text-7 {
        width: 33%;
        display: inline-block;
    }

    2017-10-21_124041
    Hope this helps :)

    Best regards,
    Mike

    #867109

    hey mike this was nearby my method i used for one customer:
    i used a bit different hook: mine is already in the footer container

    add_action( 'avia_before_footer_columns', 'enfold_customization_footer_widget_area' );
    function enfold_customization_footer_widget_area() {
      dynamic_sidebar( 'before-footer' );
    }

    same as Mike described – create a new widget area (in my case call it) : before-footer

    The rest will be some debug mode action :lol: ( on widgets we are able to use avia shortcodes ? – yes )
    means – activate debug mode and than goto a page or post and do create your needed columns and contents.
    copy the shortcode from the debug mode window and paste it to your new widget area. Bingo

    you can clean it a bit – because there are a lot of settings not used in the shortcodes

    See here: https://webers-testseite.de/#footer

    Big Advantage – the columns break with enfold settings in responsive case. because they are based on enfold shortcode

    See short form of your wanted code here for your 2/3 1/3 option:

    [av_two_third first]
    [av_heading heading='Left Heading' tag='h3' style='blockquote modern-quote'][/av_heading]
    [av_textblock ] Left 2/3 Content [/av_textblock]
    [/av_two_third]
    
    [av_one_third ]
    [av_heading heading='Right Heading' tag='h3' style='blockquote modern-quote' ][/av_heading]
    [av_textblock ] Right 1/3 Content [/av_textblock]
    [/av_one_third]

    if you like to have the same heading style:

    #footer h3 {
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
    • This reply was modified 6 years, 6 months ago by Guenni007.
    #867124

    by the way: if you like to have it under the normal widget area of enfold –
    use this hook:

    add_action( 'avia_after_footer_columns', 'enfold_under_footer_widget_area' );
    function enfold_under_footer_widget_area() {
      dynamic_sidebar( 'after-footer' );
    }
    #867147

    Hi,

    @Guenni007
    well done, I like your use of debug code and the hook :)

    Best regards,
    Mike

Viewing 12 posts - 1 through 12 (of 12 total)
  • You must be logged in to reply to this topic.