Customizing Questions

Discussion in 'Poloray WordPress Theme' started by pkat, Dec 8, 2012.

  1. pkat

    pkat New Member

    Joined:
    Feb 17, 2012
    Messages:
    5
    Likes Received:
    0
    Question #1 - After following the thread about "removing the fourth featured box" on homepage, the third box is now underneath the first two. What do I need to alter in the custom style sheet to make all three boxes in one roll?

    Question #2 - How do I remove the circle effect in the featured boxes on homepage? I want them to be square.

    Thank you!
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    1.For your first issue

    You have done something wrong while removing the fourth featured box, Undo complete process and again remove it carefully.

    2.For your second issue

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
    .feature_inner_box .circle img{
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    }
    .feature_inner_box .circle{
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    }
    This will solve your issue.
     
  3. pkat

    pkat New Member

    Joined:
    Feb 17, 2012
    Messages:
    5
    Likes Received:
    0
    Thank you! That did the trick. I did not delete the extra </div> tag, that is why it was not laying out correctly.
    I have one more question: I need for those images to be 290px x 100px -- where and what do I add to the style? Thank you very much for your help.
     
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    The total width of theme layout is 960px, So it is not possible to add that much long width images in that area,If you do that than it will break the layout of the theme.
     

Share This Page