Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1099457

    Hi,

    How do I increase the logo on Iphones and Androids a little based on all the previous CSS code you have provided (I’m sure you have to login to see what you have given me previously)? I don’t want to change the logo size on Ipads.

    View post on imgur.com

    Thanks

    #1099695

    Hey webguy007,

    You can target the logo on mobile screens using CSS like this:

    @media only screen and (max-width: 767px) {
      .logo img {
        your CSS goes here
    }
    }

    Best regards,
    Rikard

    #1099743

    Hi,

    Hi,

    Could you or another support member be a little more specific with the css code to use?

    I have no clue what should go where you put “your css goes here”.

    Thanks!:

    @media only screen and (max-width: 767px) {
    .logo img {
    your CSS goes here
    }
    }

    Thank you

    #1099899

    Hi,

    You can try something like this:

    @media only screen and (max-width: 767px) {
    .logo img {
      width:400px !important;
    }
    }

    If you want to alter websites then it’s handy to know CSS, it’s the very basics of web development and design: https://www.w3schools.com/css/default.asp

    Best regards,
    Rikard

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