How to change width of right sidebar for Sparkling WordPress theme

Hi,

The theme is awesome. I have used it for my site tozilnutpam.com

I just have two questions:

  1. How to change the width of the right sidebar? I think though it is intended to be 300PX, it is somewhat less
    than 300PX. So if I know where to change it, it would be great.

  2. How to make the menu sticky one?

Thanks,
Gireesh

Hi Gireesh,

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

1. How to change the width of the right sidebar? I think though it is intended to be 300PX, it is somewhat less than 300PX. So if I know where to change it, it would be great.
You can change the width of sidebar to 300px by adding the following CSS code in the Custom CSS option of Sparkling theme on the following path.

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


#secondary .well {
padding: 30px 29px;
}
2. How to make the menu sticky one?

You can make the menu sticky one by using the following CSS code as described above.


#page {
margin-top: 76px;
}
#masthead {
position: fixed;
width: 100%;
top: 0;
left: 0;
z-index: 9999;
}

Best Regards,
Movin

Thank you so much for your time and effort to reply, Movin. Much appreciated

You are most welcome here :slight_smile: