Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #736077

    Is there a way to target the background-position css for mobile?

    For desktop Background-position: center center is fine, but for mobile I’d like background-position: 0;

    Please see attached img link below.

    #736095

    Hey wdwalrus!

    Yes, you can go ahead and use Media Queries

    which do help with mobile modifications.
    Let us know if you need further help

    Regards,
    Basilis

    #736104

    I was hoping you could help me with what to target for that element. I noticed that the element is writing the css inline and not in a class.
    https://screencast.com/t/myWxxlha

    #736697

    Hi,

    Could you post a link to the site in question so that we can take a closer look please?

    Best regards,
    Rikard

    #737386

    Sure. Please see link below.

    Thanks,

    #738810

    Hey!

    Add a custom css class attribute to the columns then declare the background-image property plus the !important rule in the Quick CSS field.

    @media only screen and (max-width: 989px) {
         .boot-box {
             background-image: url(IMAGE URL HERE) !important;
         }
    }

    This will override the inline styling.

    Best regards,
    Ismael

    #739046

    Great, Thanks Ismael

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘mobile version edit column elements’ is closed to new replies.