I have 2 questions regarding the footer/footer widget display area. First, is there a way to display the footer widget on all pages EXCEPT the homepage? I only see 3 options (disable, include on all pages, and include on homepage only).
Secondly, how do I go about changing the height of the footer widget display area? I have an image I’m using in the background in the footer widget area and in order for it to display the entire image I need the height to be 520px (the overall image is 1200 x 520). It is not a typical footer, hence the need. Is this possible?
Thanks in advance for any help/suggestions with the above.
Thanks for getting in touch! You can try these CSS snippets. For hiding the widgets on the homepage, just set the widgets layout to show on all pages. The snippet below will hide it on the homepage.
/*Hide footer widgets on the homepage*/
.home .fl-page-footer-widgets {
display: none;
}
/*Set widgets area height*/
.fl-page .fl-page-footer-widgets {
height: 520px;
}
Thanks Ben. That works! Couple more questions…is there a way to remove the border on the footer widget area so that it blends seamlessly with the content area above?
On an unrelated note, is there an easy way to add custom bullets in lieu of the standard bullets? Specifically, I’d like to add an image. I saw something online that looks like this:
Once last question (sorry!). I added some code to include a clickable button in the footer widget area. The button works fine on mobile devices and Safari (I’m on a mac) but the link does not work in Firefox. Any suggestions? Here’s the code I added:
Never mind, I just found a solution :
For WPZOOM users (social medias icons) if your footer is way too big like it was on mine :
add this custom css on the theme :
.fl-page-footer-widgets {
margin : -60px;
}
In the plug in find social-icons-widget-by-wpzoom/css/socicon.css
Would it be possible for you to create your own topic regarding this issue, please? The reason for this is that if Kelly has subscribed to this topic which is likely. She will now be receiving notifications for each of your replies. However, we do appreciate you searching the forums prior to creating your own topic.
Also, when you create your own topic, can you also remove any custom CSS you have added related to those social icons. Then we should be able to assist and get your issue resolved.