Featured areas

Discussion in 'Woodberry WordPress Theme' started by molatin, Mar 27, 2013.

  1. molatin

    molatin Member

    Joined:
    Aug 11, 2012
    Messages:
    558
    Likes Received:
    19
    Please tell me how to make all three featured images here - http://test03.wpx.me/ - the same size in both desktop and mobile responsive.

    Also, how can I make the headings for each of these centred above each image in both desktop and mobile responsive.

    Thank you
     
  2. Harshvardhan

    Harshvardhan Administrator

    Joined:
    Mar 23, 2013
    Messages:
    16
    Likes Received:
    0
    Hi,

    Please use following code for making heading center and mobile view image size same as desktop view:

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


    Code:
    .feature-right h3{
    text-align: center;
    }
     
    .feature-left .feature-item h6 {
    text-align: center;
    }
     
    .feature-right img{
    width: 284px;
    height: 123px;
    }
     
    .feature-left .feature-item img{
    width: 284px;
    height: 123px;
    }
     
    @media only screen and (max-width: 480px) {
    .feature-right h3{
    text-align: center;
    }
    .feature-left .feature-item h6 {
    text-align: center;
    }
    .feature-right img{
    width: 284px;
    height: 123px;
    }
    .feature-left .feature-item img{
    width: 284px;
    height: 123px;
    }
     
    }

    Thanks
     
  3. molatin

    molatin Member

    Joined:
    Aug 11, 2012
    Messages:
    558
    Likes Received:
    19
    thank you
     

Share This Page