Need help with a few changes I am looking for

Discussion in 'BlogSpring WordPress Theme.' started by qleapent, Jul 30, 2014.

  1. qleapent

    qleapent Guest

    Joined:
    Jun 20, 2014
    Messages:
    7
    Likes Received:
    0
    I want to customize my blog a little bit:

    1. how do I increase the length of the menu drop-down box?

    2. How do I remove the top line in the blog post where it says:
    written by author, in category.

    3. How do I remove the social media icons below the blog title?

    4. On the sidebar under 'Latest Articles', how do I remove the date under the blog title?

    5. For the end of article where it lists 'Related Posts', how do I get the blog title to be listed underneath the image?

    6. how do I change the tags, and the previous post and the next post link to be blue and underlined?

    7. how do I remove the social media icons under the home page featured posts?
     
  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:
    #menu .ddsmoothmenu li li a{
    width:170px;
    }
    #menu .ddsmoothmenu liul li{
    width:180px;
    }
    .featured_post .post ul.post_meta{
    display:none;
    }
    .post-social-link {
    display: none;
    }
    .sidebar ul.ratting_widget li p{
    display:none;
    } 



    It is not possible to add title in Related post, Unfortunately there isn't a way to do that with our theme unless you custom code something up. Sorry.
    Thanks & Regards
    Gourav Shrivastava
     
  3. qleapent

    qleapent Guest

    Joined:
    Jun 20, 2014
    Messages:
    7
    Likes Received:
    0
    Hi, I did what you've written, but:

    1. the width of the menu drop down is still the same
    2. "written by author, in category" is still there
    3. the social media icons are still below the blog title

    Please help. The rest works except for the 3 above.
     
  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:
    #menu .ddsmoothmenu li ul li{
    width:180px;
    } 
    ul.post_meta{
    display:none;
    }
    .post-social-link-inner.single {
    display: none;
    }
    

    This will solve your issue.


    Thanks & Regards
    Gourav Shrivastava
     
  5. qleapent

    qleapent Guest

    Joined:
    Jun 20, 2014
    Messages:
    7
    Likes Received:
    0
    I did all the codes you gave me but the width of the drop-down menu for the header nav is still the same size. I put all the codes you gave me into the custom css, but still not working. My codes are like below. These are all the codes that I have. Can you take a look and advice me where I made mistakes or how I should change the codes?

    Code:
    .content-bar .author_bar .author_info {
    display: none;
    }
    .post_content a {
    color: blue;
    }
    .content-bar a {
    color: blue;
    }
    .fullwidth a {
    color: blue;
    }
    .contact-page a {
    color: blue;
    }
    .content-bar .post.single ul.post_meta li.posted_date {
    display: none;
    }
    .featured_post .post ul.post_meta li.posted_date {
    display: none;
    }
    #menu .ddsmoothmenu li li a{
    width:170px;
    }
    #menu .ddsmoothmenu liul li{
    width:180px;
    }
    .featured_post .post ul.post_meta{
    display:none;
    }
    .post-social-link {
    display: none;
    }
    .sidebar ul.ratting_widget li p{
    display:none;
    }
    #menu .ddsmoothmenu li ul li{
    width:180px;
    }
    ul.post_meta{
    display:none;
    }
    .post-social-link-inner.single {
    display: none;
    }
     

Share This Page