• Resolved damiano874

    (@damiano874)


    Hi,

    Is there any way that we can place attribution in the same line after the “11 reviews” text in the belowed code?

    [reviews_rating limit=”0″ icon=”hide” name=”hide” vicinity=”hide”]

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author Design Extreme

    (@designextreme)

    @damiano874 You can do this using CSS. Firstly, use the Centered, Light Background theme. Add this to your Child theme’s style sheet or in the Custom Styles (in the advanced tab):

    .google-business-reviews-rating.center {
    	display: flex;
    	align-items: center;
    	justify-content: center;
    	margin-bottom: 0.5em;
    }
    .google-business-reviews-rating.center > p {
    	margin: 0 0.5%;
    }
    .google-business-reviews-rating.center > .rating {
    	flex: 1 0 52.5%;
    	text-align: right;
    }
    .google-business-reviews-rating.center > .attribution {
    	flex: 1 0 46.5%;
    	text-align: left;
    }
    .google-business-reviews-rating.center .powered-by-google {
    	position: relative;
    	top: 0.5em;
    }

    Please add the either use the theme or class parameter: center and remove the <center> tag (as this is no longer a valid HTML tag).

Viewing 1 replies (of 1 total)
  • The topic ‘Setting up reviews – attribution’ is closed to new replies.