Hello i’m getting in to customizing the theme description through coding with chat gpt i have managed to make the mobile version how i wanted, however there are some things that have to be different in the desktop version of the website in order to make it look good aswell. If you could help me find a solution to structure the layout for the mobile version differently it would be very helpful,
this is the code that i’m using right now:
★★★★★
3698+ Clienti Soddisfatti
Scopri un Modo più Veloce ed Efficace per Curare l'Emicrania
Se hai mai lottato con l'emicrania o il mal di testa, capirai quanto sia terribile sentirsi impediti di fare qualsiasi cosa a causa del dolore costante.
Semplici attività quotidiane diventano una sfida. L'emicrania e il mal di testa possono farti sentire molto più stanco di quanto tu sia.
Forse hai provato diversi metodi, ma tutti forniscono solo un sollievo temporaneo e il dolore torna dopo pochi giorni.
Se trascurato, questo può portare a problemi più gravi e una dipendenza dagli antidolorifici.
Sfruttando la Tecnologia ChillGel™, la cuffia Sanitop™ si congela rapidamente e rimane fredda a lungo per offrire un sollievo dall'emicrania e dal mal di testa quasi istantaneo.
Use media queries to apply specific styles to desktop screens. For example, if you want to increase the size of the text, adjust margins, or change the flex-direction on desktop screens, you can do so within a media query.
★★★★★
3698+ Clienti Soddisfatti
#
Scopri un Modo più Veloce ed Efficace per Curare l'Emicrania
---
Se hai mai lottato con l'emicrania o il mal di testa, capirai quanto sia terribile sentirsi impediti di fare qualsiasi cosa a causa del dolore costante.
Semplici attività quotidiane diventano una sfida. L'emicrania e il mal di testa possono farti sentire molto più stanco di quanto tu sia.
Forse hai provato diversi metodi, ma tutti forniscono solo un sollievo temporaneo e il dolore torna dopo pochi giorni.
Se trascurato, questo può portare a problemi più gravi e una dipendenza dagli antidolorifici.
Sfruttando la **Tecnologia ChillGel™**, la cuffia **Sanitop™** si congela rapidamente e rimane fredda a lungo per offrire un sollievo dall'emicrania e dal mal di testa quasi istantaneo.
and your CSS:
/* Base styles */
.container {
display: flex;
flex-direction: column;
background-color: #eaf7f7;
padding: 20px;
}
.video {
max-width: 100%;
height: auto;
border-radius: 10px;
margin-bottom: 20px;
}
.stars-and-ratings, .title-section {
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
text-align: center;
}
.stars {
color: #0074cc;
font-size: 24px;
margin-right: 5px;
}
.ratings, h1 {
font-size: 14px;
font-weight: lighter;
margin: 0;
}
.title-section h1 {
font-family: 'Montserrat', sans-serif;
font-weight: bold;
font-size: 20px;
margin-bottom: 10px;
}
.title-section hr {
width: 70%;
height: 2px;
background-color: #0074cc;
border: none;
margin: 10px auto;
}
/* Media query for desktop screens */
@media (min-width: 768px) {
.container {
flex-direction: row; /* Example change: align items in a row for desktop */
padding: 40px; /* More padding on desktop */
}
.video {
flex: 1; /* Flex grow to take up space */
margin-right: 20px; /* Add margin between video and text content */
}
.stars-and-ratings, .title-section {
flex-direction: column; /* Stack these vertically on desktop */
}
.title-section h1 {
font-size: 24px; /* Larger text on desktop */
}
.ratings, p {
font-size: 16px; /* Slightly larger paragraph text on desktop */
}
}
Adjust the media query styles as needed to suit your design preferences for desktop viewers.