Hi – I’m using the one page website layout. I’ve applied this custom css that I found on the comments page which sticks the socket at the bottom of the page at all times, only problem is that when you first go to the Home Page it doesn’t show, it only shows after you’ve scrolled down or clicked on one of the menu links. How can I adjust it so that it appears straightaway on the Home Page as soon as you go on to the website?
#socket { position: fixed; bottom: 0; width: 100%; -webkit-perspective: 1000px; -webkit-backface-visibility: hidden; }
Thank you!
Kathryn
Hey kathrynmichaud!
Try adding a z-index value to it like so.
#socket { z-index: 2000 !important; }
Best regards,
Elliott
Yep – brilliant – that’s done it – thanks!