Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1230483

    I created a custom footer here – https://nikih.sg-host.com/

    I need help with the following:

    1- What is the short-code to insert my main main in the right column? I dont want to manually re-create the top menu

    2- On mobile, all the social icons disappears

    3- How do I center everything on mobile?

    Thanks

    #1230814

    Hey navindesigns,

    1. You can use Navigation Menu widget for it.
    2. Please add this CSS code in Quick CSS, located in Enfold > General Styling:

    @media only screen and (max-width:990px) {
      #footer .textwidget .social_bookmarks {
        display: block !important;
      }
    }

    3. Please add this CSS code in Quick CSS as well:

    @media only screen and (max-width:767px) {
      #footer {
        text-align: center;
      }
    }

    Best regards,
    Nikko

    #1230934

    Thanks

    How do I add the Navigation Menu widget into my html file? What is the shortcode?

    #1231045

    Hi navindesigns,

    The shortcode isn’t fixed for it, but here’s a way to do get it:
    1. Go to Appearance > Widget, create a new Widget Area, add a Navigation Menu to it and select your top menu.
    2. Add this code in your child theme’s functions.php:

    function builder_set_debug() {
    	return 'debug';
    }
    
    add_action( 'avia_builder_mode', 'builder_set_debug' );

    3. Create a new page, enable ALB builder then select the Widget element and select the Widget Area you created.
    4. At the bottom of the builder you should see the shortcode which you can use.

    Best regards,
    Nikko

    #1231409

    that works but it came out vertical, how do I spread it out horizontal

    Thanks

    #1231615

    Hi,

    Please try this CSS as well:

    #nav_menu-2 #menu-workwellwithin li {
        display: inline-table;
    }

    Best regards,
    Rikard

    #1231710

    That works. Thanks for all your help. You can close this thread now.

    #1231774

    Hi navindesigns,

    Great :)

    We are closing the thread.

    If you need further assistance please let us know in a new one.

    Best regards,
    Victoria

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Custom Footer’ is closed to new replies.