Fix the featured slider and sidebar

Hi my website is: http://no-more-fairytales.com/marketing1/

I have already fixed the menu at the top of the page. I now wish to fix the featured slideshow / slider and sidebar where they are, so that no matter how much I scroll down, I can always see the featured slideshow/slider.

I have searched the forums and Google. Is there any way I can get this done?

Many thanks.

Hi @pencilleads,

I hope you are well today and thank you for your question.

I visited your site and it seems you managed to make the sidebar fixed so to make the featured slideshow / slider fixed at the top of the page try adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Apperance -> Theme Options -> Other -> Custom CSS

.flexslider {
  position: fixed;
  top: 75px;
  left: 0;
  z-index: 9999;
}
.top-section {
  margin-top: 440px;
}

I personally think it’s not good idea to make the featured slider fixed as it will consume lot of page space.

Best Regards,
Movin