Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #352850

    Hi there
    Is there any way to keep the socket at a foxed size no matter what size the main content is? So that it doesn’t get bigger to fill some space?

    I’ve tried adding some custom css to fox it but its not working.

    Cheers
    Natasha

    #353069

    Hi Natasha

    You can add following code to Quick CSS in Enfold theme options under General Styling tab

    #socket {
    position: fixed;
    bottom: 0;
    width: 100%;
    }

    That would make it fixed to bottom but on bigger screens you will still see a blue bar at the bottom if you do not have enough content. You can also try adding following code to Quick CSS field

    @media only screen and (min-width: 1600px) {
    #main .content { min-height: 1000px; }}

    Best regards,
    Yigit

    #353420

    Hi there

    Excellent thank you the second piece of code worked as I wanted :-)

    thank you so much

    Cheers
    Natasha

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Socket size’ is closed to new replies.