This looks fine for us on the desktop version, however, in the mobile version it does not look good.
So I would like to keep it like it is for the desktop version but for the mobile version I would like the review section to be displayed as it originally was - meaning under the product description text.
Could you let me know how I need to change the code to make this happen?
Btw, this is the German community if you wanna chat about this in DE…
Test following in a test copy of Dawn first: you can use media queries in your CSS to target the mobile view of your site and adjust the positioning of the reviews by adding a class to your reviews and target that class with your media query.
Use CSS to change the positioning of the element by using the position property, and the bottom or top property to move it below or above the product description.
Example code to place at the bottom of the base.css :
@media only screen and (max-width: 767px) {
.product-reviews {
position: relative !important;
bottom: 0;
}
}
This will make sure that the product reviews are positioned at the bottom of the product description only when viewed on a screen with a width of 767px or less.