size of feature images and sidebar colors of the letters

Discussion in 'Themia WordPress Theme' started by homeonweb, Mar 2, 2013.

Thread Status:
Not open for further replies.
  1. homeonweb

    homeonweb New Member

    Joined:
    Feb 18, 2013
    Messages:
    12
    Likes Received:
    0
    Hello,

    I've two simple questions:

    1. Is it possible to change the size of the images of the feature os the front page to a icon size. ex 16x16?

    2. I've used an answer you gave to another user, to eliminate the grey bar on the sidebar, and it worked well, but now the letters of the headline are white. How can I change it to black?

    thanks for your help.
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    For your First issue, paste the following code in your custom css
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)
    Code:
    .feature_content img {
    width: 20px;
    height: 20px;
    }
    Adjust the value of width and height as per your requirement.
    This will solve your issue.

    For your Second issue, paste the following code in your custom css
    Code:
    .sidebar .wrap_sidebar h2.title, .sidebar .wrap_sidebar h2 {
    color: black;
    background:none;
    }
    This will solve your issue.
     
  3. homeonweb

    homeonweb New Member

    Joined:
    Feb 18, 2013
    Messages:
    12
    Likes Received:
    0
    Worked fine, thanks
     
Thread Status:
Not open for further replies.

Share This Page