Site logo

Archived topic

Header Widget

3 replies · Started by racheljohn on April 22, 2020

Viewing posts 1–4 of 4

I am having a hard time figuring out how to get my header widget with the google reviews to appear all the way on the right side of the header it works just fine is I put it on the left but not on the right for some reason.
this is the CSS I am currently using:
.header-widget {
padding-right: 0px;
}

Hi there,

try this CSS:

.header-widget {
    display: flex;
    justify-content: flex-end;
}

.header-widget .google-reviews-widget {
    flex: 0 0 300px;
}

Perfect! Thank you so much.

Glad to be of help.

This archived topic is closed to new replies.