Hi
I would like to center content in socket on mobile device
Please share the css with me :-)
Thanks
Another question
When I create a layout like this :
text-image
image-text
text-image
It appears on mobile like this:
text – image
image -text
text-image
How do I get it to show the same way on mobile as on labtop?
Hi,
Could you post a link to where we can see the elements in question please?
Best regards,
Rikard
Hi,
Thank you for contacting us.
The below code will make the socket copyrights text and menu center-aligned and stacked. You can remove the background color from the CSS code.
@media only screen and (max-width: 786px) {
#top.home footer .container {
display: flex;
background: gold;
flex-direction: column;
justify-content: center;
}
#top.home footer .copyright {
display: flex;
justify-content: center;
background: lightblue;
}
#top.home footer .sub_menu_socket {
display:flex !important;
justify-content: center;
background: lightgreen;
margin: 0;
}
}
Best regards,
Vinay