Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1280474

    Hi

    I am using a blog post element and i want to set the width of each blog as 100% on mobile. I tried this code but it is not working.

    @media only screen and (max-width: 767px)
    .responsive #top #wrap_all .slide-entry {
    width: 100%;
    margin-left: 4%;
    text-align: center;
    }

    #1281410

    Hey mritkuma99,

    You are missing an opening {
    Try this code:

    
    @media only screen and (max-width: 767px) {
        .responsive #top #wrap_all .slide-entry {
            width: 100%;
            text-align: center;
        }
    }
    

    If you need further assistance please let us know.
    Best regards,
    Victoria

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.