Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #1432556

    Is there a way to have the logo centered on every page, just above the footer widgets? see attached screenshot of logo above the widgets

    thanks

    #1432578

    Hey bemodesign,

    Thank you for the inquiry.

    You can use the ava_before_footer hook to insert additional content before the footer columns.

    Example:

    add_action('ava_before_footer','avia_above_footer');
    function avia_above_footer(){
       echo "logo here";
    }
    

    You can also create a custom footer page and set it as Page based Footer in the Enfold > Footer > Default Footer & Socket Settings.

    Best regards,
    Ismael

    #1432642

    And add to the code to functions.php file? But I don’t have a child theme and don’t want to do one. Will the logo be lost if a theme update is done?
    So the “default footer” might be the best way? Was hoping this would be easier.

    thanks

    #1432647

    I added the code to functions.php file and the logo looks great. But now, if I update theme it will be gone??

    #1432670

    Hi,

    Thank you for the update.

    Yes, the modification will be overridden on update. We recommend installing a child theme to preserve the modification. If that is not an option, you can use the Page based Footer instead or manually add the logo on every page.

    Best regards,
    Ismael

    #1432675

    Ok, I created a page based footer. But how do I remove footer navigation menu lines that are on the top and bottom of links? (for by USEFUL LINKS)

    #1432703

    Hi,

    Please try the following in Quick CSS under Enfold->General Styling:

    #top .content .flex_column .widget_nav_menu li {
      border-top-width: 0;
      border-bottom-width: 0;
    }

    Best regards,
    Rikard

    #1432757

    There is still a line under the title.

    #1432799

    Hi,

    Thank you for the update.

    You can use this css code to remove the underline from the widget links.

    #main .widget a {
        text-decoration: none;
    }

    Best regards,
    Ismael

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