Viewing 16 posts - 1 through 16 (of 16 total)
  • Author
    Posts
  • #1204096

    Hi there,
    with the info from the forum I was able to create a contact form in the sidebar. Now I’d like to make the whole sidebar sticky – how do I do that?
    Thx,
    Silvia

    #1204152

    Hey payton_sil,

    You may be able to set it at “fixed” position via css. Please provide a link to the site/page in question.

    Best regards,
    Jordan Shannon

    #1204323

    Hi Jordan,
    the website isn’t online yet – should I add you to WP as editor or send you login credentials?
    Best,
    Silvia

    #1204482

    Hi,

    Send login creds in the private area.

    Best regards,
    Jordan Shannon

    #1204696
    This reply has been marked as private.
    #1205047

    Hi,

    The login provided didn’t work for me. Can you check?

    Best regards,
    Jordan Shannon

    #1205493
    This reply has been marked as private.
    #1206919

    Hi,

    Add this to quick css:

    aside.sidebar.sidebar_right.alpha.units{
        position: fixed!important;
        width: 400px!important;
        right: 100px!important;
        top: 100px!important;
    }

    Best regards,
    Jordan Shannon

    #1207052

    Hi Jordan,
    thanks a lot; I changed it to 200px from top, and now it looks great.
    Best regards,
    Silvia

    #1207378

    Hi payton_sil,

    We’re glad to hear that :)
    Let us know if you need further assistance.

    Best regards,
    Nikko

    #1210960

    Hi there,
    unfortunately, the sidebar now remains the same on tablet size as well; it’s way too big. Could be please take a look?
    Thanks,
    Silvia

    #1211251

    Hi,

    I’m not seeing the issue, are you able to screenshot?

    Best regards,
    Jordan Shannon

    #1211263
    This reply has been marked as private.
    #1211266

    Hi,
    Try the following:

    https://snipboard.io/

    Best regards,
    Jordan Shannon

    #1211368
    This reply has been marked as private.
    #1213159

    Hi,

    Sorry for the delay. You can insert additional css media query in the Quick CSS field or the child theme’s style.css file to adjust the width of the sidebar on smaller screens.

    @media only screen and (max-width: 1024px) {
      /* Add your Mobile Styles here */
       aside.sidebar.sidebar_right.alpha.units{
        width: 100px!important;
      }
    }
    

    Best regards,
    Ismael

Viewing 16 posts - 1 through 16 (of 16 total)
  • You must be logged in to reply to this topic.