Link Panel Image Removal/ Homepage Image size adjustment

Discussion in 'Poloray WordPress Theme' started by isaacfp, Jun 11, 2014.

  1. isaacfp

    isaacfp Guest

    Joined:
    Jun 11, 2014
    Messages:
    3
    Likes Received:
    0
    Question #1) How do I keep the right link panel and the links and text associated with it, but remove the images that are attached to each section?

    Question #2) The Home page feature button's images are too large, is there a way to decrease the size of each image?

    Question #3) How do I change the font on each page?
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
     ul.link li img {
    display: none;
    }
    .readmore {
    padding-top: 2px;
    padding-bottom: 6px;
    padding-left: 7px;
    padding-right: 7px;
    }
    p{
    font-family:Your Font Type;
    }
    

    Thanks & Regards
    Gourav Shrivastava
     
  3. isaacfp

    isaacfp Guest

    Joined:
    Jun 11, 2014
    Messages:
    3
    Likes Received:
    0
    Thank you for your help, but instead of changing the size on the "read more" buttons, I was trying to change the size of the home page featured images (above the "read more" buttons and the text for those links). I was wondering if there was any code for that, and if you could help me with that?
     
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
    .feature_inner_box .circle img {
    width: 142px;
    height: 138px;
    }
    .feature_inner_box .circle {
    width: 152px;
    height: 148px;
    } 

    Adjust its value as per your requirements.

    Thanks & Regards
    Gourav Shrivastava
     

Share This Page