Hi,
I have created a Fullscreen Slider and it leaves a space above above for the Header but is there a way of displaying the Socket as well please – without having to scroll to see the Socket?
Thanks
Jane
Hey Jane,
I’m not sure I understand the problem you are having, could you link to the page in question so that we can have a closer look please?
Best regards,
Rikard
Hi Rikard
Here is the test page.
After the page loads you have to scroll down to see the socket. I would like the visitor’s first view to include the socket.
Thanks
Jane
Hi Jane,
Try adding this css code in Quick CSS (Located in Enfold > General Styling):
#socket {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
z-index: 100;
}
#socket .container {
padding-bottom: 30px;
}
Hope it helps.
Best regards,
Nikko
Hi Nikko
Thank you so much – works perfectly!
Jane
Hi Jane,
Great, glad we could help :-)
Please let us know if you should need any further help on the topic or if we can close it.
Best regards,
Rikard
Hi Rikard
I have now realised that the solution has only made a sticky socket but that was not what I was after because if affects all the other pages.
I wanted to know if there was a way of just having the socket show on the homepage below the fullscreen slider without having to scroll but wanted the socket to behave as normal on all the other pages.
Do you think there is a solution?
Thanks
Jane
Hey!
Yes – use this code instead – it will only affect the homepage:
.home #socket {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
z-index: 100;
}
.home #socket .container {
padding-bottom: 30px;
}
Regards,
Peter
That’s great – thank you so much!