How do I make the mobile view of this:
Look like the desktop version (side by side), like this:
A user seeks help aligning their Dawn theme homepage for mobile view. They want the mobile layout to match the desktop version’s side-by-side arrangement.
Problem:
Solution Provided:
A community member offered CSS code modifications:
Status: Solution proposed but not yet confirmed as implemented or successful. The CSS snippet addresses alignment, spacing, and responsive behavior for the homepage elements.
@Tiff0011 ,Share the password.
step 01:
step 02:
@media only screen and (max-width:767px){
.align-items-center {
align-items: center!important;
justify-content: space-between;
flex-wrap: nowrap;
flex-direction: row;
}
.selection-box .col-md-6.p-0 {
width: 50%;
}
.hot-item a img {
height: 200px;
object-fit: cover;
}
#hot_selection .selection-box .hot-slider .hot-item img {
padding: 10px;
width: 100%;
}
#hot_selection .selection-box .hot-slider .hot-item {
text-align: center;
max-width: 63%;
}
}
this idea helps you