- This topic has 1 reply, 2 voices, and was last updated 3 years ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- The topic ‘How to modify the ‘Top Bar’ widget.’ is closed to new replies.
Home › Forums › Lorina Pro › How to modify the ‘Top Bar’ widget.
I’m wondering if there is a way to center and widen the width of the ‘Top Bar’ widget. I have it displaying my subscribe form and it’s aligned to the left. I would love it centered and full page width.
https://kristinbytheocean.com/
Thank you. I’m so grateful for the constant help I receive here.
Hi,
This custom CSS added to Customize > Additional CSS should center the top bar widget and make it full width instead of the default 50% width.
#top-bar .widget {
display: block;
width: 100%;
margin-left: auto !important;
margin-right: auto !important;
text-align: center !important;
}