Harrington issues

Discussion in 'Harrington- A WordPress Business Theme.' started by aplusa, Oct 1, 2014.

  1. aplusa

    aplusa Guest

    Joined:
    Jun 11, 2013
    Messages:
    39
    Likes Received:
    0
    Hello there,
    I want help with some problems.
    a. I've already read the code for how to change the color to the circled fetaure home contents, but it doesn't work when I add a "#809909" color for example.
    b. To the posts I only want to show the date of the article and nothing else. No category, no author, no archives.
    c. I need more space to the navigation bar, Half of the menu items change line.

    Thanx in advance
     
  2. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello,
    Use this code in custom CSS section.
    Code:
    .feature_inner_box.third p
    {
    color:#809909;
    }
    .post_comment
    {
    display:none;
    }
    li.posted_by
    {
    display:none;
    }
    li.posted_in
    {
    display:none;
    }
    li.post_comment
    {
    display:none;
    }
    Thanks & Regards
    Pramod
     
  3. aplusa

    aplusa Guest

    Joined:
    Jun 11, 2013
    Messages:
    39
    Likes Received:
    0
    nothing changed! neither the color of the cirlce and the post info still there :(
     
  4. aplusa

    aplusa Guest

    Joined:
    Jun 11, 2013
    Messages:
    39
    Likes Received:
    0
    How can I hide the slugs?
     
  5. aplusa

    aplusa Guest

    Joined:
    Jun 11, 2013
    Messages:
    39
    Likes Received:
    0
    any information???? plz!!!!
     
  6. Krish

    Krish Support Staff

    Joined:
    Oct 22, 2012
    Messages:
    210
    Likes Received:
    1
    Location:
    India
    Hello aplusa,

    Use following code to solve question (b) on Theme options -> Styling setting -> Custom css:
    Code:
    .content-bar .post .post_meta .posted_by ,
    .content-bar .post .post_meta li.posted_in,
    .content-bar .post .post_meta .post_comment{
        display: none;
    }
    For (a) :
    If you want to change content color of feature area, use below code:
    Code:
    .feature_inner_box h6 a,
    .feature_inner_box p {
        color: #809909;
    }
    And if you want to change circle background color, use below code:
    Code:
    .feature_inner_box .circle {
        background-color: #129676;
    }
    Note: in above code color value is as demo prepose, user your own color code where you desire.
     
  7. Krish

    Krish Support Staff

    Joined:
    Oct 22, 2012
    Messages:
    210
    Likes Received:
    1
    Location:
    India
    For (c):
    I need more clarification to solve your issue.
     
  8. Krish

    Krish Support Staff

    Joined:
    Oct 22, 2012
    Messages:
    210
    Likes Received:
    1
    Location:
    India
    I got your query on your bumped post.

    Use following code in custom css option for fix this issue:
    Code:
    #menu .ddsmoothmenu li {
        font-size: 12px;
        margin-right: 10px;
    }
    Note: if you need more space, decrease the above code's pixel value.
     
  9. aplusa

    aplusa Guest

    Joined:
    Jun 11, 2013
    Messages:
    39
    Likes Received:
    0
    I'll input your info and I'll inform you for the results. Thanx in advance
     

Share This Page