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!
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
Worked perfectly – the code – to to center it – do i put float: center;
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
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