Home › Forums › Jevelin Theme › Changing element position for mobile
Home › Forums › Jevelin Theme › Changing element position for mobile
Hello again Shufflehound Support!
i created a layout i really like on my homepage
(http://hailpern.net/joshua2017/) where there is a layout of
IMAGE – CONTENT
CONTENT – IMAGE
IMAGE – CONTENT
On a desktop, it looks great. But on mobile the CONTENT – IMAGE ends up looking weird. Is there anyway to make it so that on mobile the image shows up ontop of the content like the other 2 rows?
Hi @cmurockstar,
Thank you for your another question.
No it is hard to achieve so instead please create content as following
IMAGE – CONTENT
IMAGE – CONTENT
IMAGE – CONTENT
Then on desktop we can try displaying it as following developing custom CSS code.
IMAGE – CONTENT
CONTENT – IMAGE
IMAGE – CONTENT
Best regards,
Shufflehound team
ok i made the change – how would you propose adjusting this then on desktop only?
Solution for this topic
You can try achieving it by adding the following CSS code in the Custom CSS code option of your theme on the below path.
Admin Area -> Appearance -> Theme Settings -> Custom Code -> CSS Code
@media (min-width: 800px){
body.home .sh-section-3807118adbb99e58c396038765cc9739 .sh-column:first-child {
float: right;
}
}
bingo! thanks!
You are most welcome here 🙂