Tagged: , ,

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

    I need to add a disclaimer for my attorney client on the bottom of the page (below the copyright) and I am unsure how to do it.

    any help would be great. the disclaimer is about a paragraph long.

    thank you!

    #236567

    Hi grwebs!

    Can you post a screenshot and show how you would like it to look? Maybe you can use socket menu. You can go to Appearance > Menus and create a new menu, add disclaimer (as link or text) and check “Enfold footer menu” in Menu settings
    or, you can go to Appearance > Editor and open Footer.php file and find

    wp_nav_menu($args);
                                echo "</nav>";

    and add your text right above it as following

    echo "<div class='disclaimer'>your text goes here</div>";

    then you can style your disclaimer using .disclaimer class in Quick CSS as following

    .disclaimer { float: right; }

    Cheers!
    Yigit

    #236583

    Worked perfectly – the code – to to center it – do i put float: center;

    #236901

    Hi!

    Can you post the link to your website so we can take a look?

    Cheers!
    Yigit

    #236951

    Gladly

    http://www.grwebs.net/karen

    thanks!

    Julie

    #236954

    Hi!

    Please add following code to Quick CSS in Enfold theme options under Styling tab

    .disclaimer {
    text-align: center;
    }

    If this is not what you meant, please post a screenshot and show

    Regards,
    Yigit

    #238306

    ok thank you! also I noticed that in the mobile vs the disclaimer disappears – is there a way to fix that – this is for a law firm and they need to have it visible there all the time

    thanks again

    #238538

    Hi!

    Please add this on your custom.css or Quick CSS:

    @media only screen and (max-width: 479px) {
    .responsive #socket .sub_menu_socket {
    display: block;
    }
    
    .disclaimer {
    width: 100%;
    clear: both;
    padding-top: 10px;
    text-align: center;
    }
    }
    

    Best regards,
    Ismael

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