Need to delete blog post from home page

Discussion in 'SaleJunction E-Commerce WordPress Theme' started by imagegrafx, Nov 12, 2014.

  1. imagegrafx

    imagegrafx Member

    Joined:
    Jan 12, 2013
    Messages:
    76
    Likes Received:
    0
    www.testdummy24.com/discover is my url.

    #1 At the very bottom of my home page I have a video and just below that is where the blog post is. I would like to keep all the info above those words, but get rid of the area that says "Youy have not posted any blog yet." So I don't want to remove the entire blog area, just where the post is. Is that possible?

    #2 Also, I would like to remove or make smaller the block of space just below the slider, between the two lines, is that possible?

    #3 In the footer area, I would like to make the blue text white

    #4 I would like to make the light blue links throughout the website red... for example, on the home page about middle of the way down the active link Download the special report mentioned in the below video I would like to make that red instead of light blue.

    Thanks so much!
     
  2. Yogesh

    Yogesh Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,052
    Likes Received:
    41
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    .content_wrapper {
    display: none;
    }
    .feature_content {
    padding: 30px 0 0px 0;
    }
    .feature_content ul.feature_content_inner_box {
    display: none;
    }
    .footer_wrapper .footer_widget h6 {
    color: white;
    }
    .feature_content_inner_head a {
    color: red;
    }
    It will resolve your issue.

    Thanks & Regards
    Yogesh Bhade
     
  3. imagegrafx

    imagegrafx Member

    Joined:
    Jan 12, 2013
    Messages:
    76
    Likes Received:
    0
    Thank you so much! One last question...how can I make the active link in the menu red instead of the light blue? You guys are the greatest!
     
  4. Yogesh

    Yogesh Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,052
    Likes Received:
    41
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    #menu li.current-menu-item a, #menu li.current-menu-parent a, #menu li.current_page_parent a, #menu li a.selected, #menu li a:hover, #menu li.current_page_item a {
    color: red;
    }
    #menu .ddsmoothmenu li li a.selected, #menu .ddsmoothmenu li li a:hover {
    color: red;
    }
    It will resolve your issue.

    Thanks & Regards
    Yogesh Bhade
     

Share This Page