Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #872808

    Arns
    Participant

    Hi there,

    i want to make a different orientation on the smartphone. In my example the picture is “float: right;” on everything. But i want to “float: left;” it on smartphones. How is that possible?

    I found this in the forum, but don“t know how to embed it:

    @media (min-width: 300px) and (max-width: 512px) { float: left; }

    regards,

    Christian

    #872812

    Arns
    Participant
    This reply has been marked as private.
    #873562

    Friech
    Moderator

    Hi Christian,

    Thanks for writing in! You can add this under Custom > CSS in the Customizer.

    @media (max-width:  767px) {
    	.home .x-img-thumbnail {
    		float: left;
    	}
    }

    Hope it helps, Cheers!