Tagged: CONTACT FORM, sidebar, sticky
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
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
Hi Jordan,
the website isn’t online yet – should I add you to WP as editor or send you login credentials?
Best,
Silvia
Hi,
Send login creds in the private area.
Best regards,
Jordan Shannon
Hi,
The login provided didn’t work for me. Can you check?
Best regards,
Jordan Shannon
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
Hi Jordan,
thanks a lot; I changed it to 200px from top, and now it looks great.
Best regards,
Silvia
Hi payton_sil,
We’re glad to hear that :)
Let us know if you need further assistance.
Best regards,
Nikko
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
Hi,
I’m not seeing the issue, are you able to screenshot?
Best regards,
Jordan Shannon
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