Make theme unresponsive

Discussion in 'BlackBird WordPress Theme' started by shermenfoo, May 20, 2013.

  1. shermenfoo

    shermenfoo Guest

    Joined:
    Apr 9, 2013
    Messages:
    4
    Likes Received:
    0
    Hi,

    I am using this theme for my website www.kiddom.com.sg and as I'm using a lot of jpegs for my advertisements, I don't like the way they look when in my phone. Is there a way to make it unresponsive? thanks
     
  2. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .fullwidth img {
    width: 100%;
    }
    .logo img {
    width: 100%;
    }
    It will make images responsive.
     
  3. shermenfoo

    shermenfoo Guest

    Joined:
    Apr 9, 2013
    Messages:
    4
    Likes Received:
    0
    Hi it still looks weird on my mobile phone, it looks elongated for the pictures used...
     
  4. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    It will improve mobile view.

    Code:
    .fullwidth img {
    width: 100%;
    height: auto;}
    @media only screen and (max-width: 480px){
    .logo img {
    margin-left: 15px;
    width: 100%;
    }}
     

Share This Page