Just purchased Pro theme; need help with customizations

Discussion in 'Poloray WordPress Theme' started by kameko, Jan 7, 2013.

  1. kameko

    kameko New Member

    Joined:
    Jan 7, 2013
    Messages:
    12
    Likes Received:
    0
    I need either explicit (with pictures) instructions on how to do the following, or I need you to do it for me:

    I need the "Reply and post comment" functions disabled.
    I need the "Search and archives and categories" functions disabled.
    I need the font changed to "Century Gothic"
    I need the "circles" activated, solid, and in red to match the red in the template, with the categories written on each circle in white, four pages- four circles
    I need the footer color to match the gray in my logo
    I need the background changed from gray to WHITE

    Thank you for your help; I don't know any code, so any help you can provide would be most appreciated.
     
  2. Harmeet

    Harmeet Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    360
    Likes Received:
    15
    Hello,

    1. Put the following code in your custom css

    Appearance -> theme options -> styling options -> custom css
    Code:
    #commentsbox {
    display:none;
    }
    2. Those are the default widget of the theme, when you add your widget it will be removed automatically.

    3. Put the following code in your custom css

    Appearance -> theme options -> styling options -> custom css

    Code:
    body {
        font-family:Georgia, "Century Gothic";
    }
    h1, h2, h3, h4, h5, h6 {
    font-family:Georgia, "Century Gothic";
    }

    4. Put the following code in your custom css

    Appearance -> theme options -> styling options -> custom css
    Code:
    .feature_inner_box .circle {
    border: solid 6px red;
    }
    .feature_inner_box .circle:hover {
    border: solid 6px red;
    }
    5. For your fifth problem can you please share the link of your website so that we can check the color of the logo according to it we will send you the code to change footer color.

    6. The background color is already white, send the screenshot where you want to change the color from grey to white.
     

Share This Page