Removing Homepage Sections

Discussion in 'Blackriders WordPress Theme' started by tpsarkis, Dec 12, 2017.

  1. tpsarkis

    tpsarkis Member

    Joined:
    Oct 18, 2012
    Messages:
    55
    Likes Received:
    0
    I'd like to remove the homepage feature and the blog section on the homepage and just have the H1 title and a section below rto add an article if needed.

    Maybe the possibility of removing the footer section later on because the page will be used for advertising primarily so having less on it mich be better for mobile devices.

    Please let me know how to do this.

    Thanks
     
  2. akbar92

    akbar92 Support Staff Staff Member

    Joined:
    Jun 3, 2017
    Messages:
    2,318
    Likes Received:
    49
    Hi,

    Greetings from InkThemes,

    To remove those sections, just paste the code given below in Custom CSS section.
    (Dashboard->Inkthemes->Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .home-content {
        display: none;
    }
    .bottom_feature .col-md-8.col-sm-8 {
        display: none;
    }
    .bottom_feature .col-md-4.col-sm-4 {
        display: none;
    }
    Hope this helps...!

    Thanks & Regards!
    Akbar
    InkThemes.com
     
  3. tpsarkis

    tpsarkis Member

    Joined:
    Oct 18, 2012
    Messages:
    55
    Likes Received:
    0
    Hi, not quite what I'm asking.
     
  4. tpsarkis

    tpsarkis Member

    Joined:
    Oct 18, 2012
    Messages:
    55
    Likes Received:
    0
    I want to leave the Title in the content section and the area just below it to add content.
    The section wiotht eh round thingys and all below that is what I want to remove.
    I don't want to remove everything.
    Please let me know if you're still not sure what I'm asking.
    Thanks
     
  5. tpsarkis

    tpsarkis Member

    Joined:
    Oct 18, 2012
    Messages:
    55
    Likes Received:
    0
    I will take a screenshot with arrows so that you don't get confused with my request
     
  6. tpsarkis

    tpsarkis Member

    Joined:
    Oct 18, 2012
    Messages:
    55
    Likes Received:
    0
    I need to remove everything BELOW the red line in the photo, inluding the Blog post section below it.
    I would also like to know if it's possible to remove the default FOOTER sections without having to add my own.
     

    Attached Files:

  7. akbar92

    akbar92 Support Staff Staff Member

    Joined:
    Jun 3, 2017
    Messages:
    2,318
    Likes Received:
    49
    Hi,

    Please use below-given codes:

    Code:
    .feature_box {
        display: none;
    }
    .bottom_feature .blog-heading {
        display: none;
    }
    .bottom_feature .blog_feature {
        display: none;
    }
    .bottom_feature .sidebar.home {
        display: none;
    }
    There are two solutions to remove footer widget area:

    1: To completely remove footer widget area, just paste the code given below in Custom CSS section.
    (Dashboard->Inkthemes->Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .footer_container {
        display: none;
    }
    2. To remove only text and widgets, just place the blank text widget in the widget area,
    (Dashboard->Appearence->Widgets)

    Hope this helps...!

    Thanks & Regards,
    Akbar
    InkThemes.com
     
  8. tpsarkis

    tpsarkis Member

    Joined:
    Oct 18, 2012
    Messages:
    55
    Likes Received:
    0
    Thank you very very much Akbar.:)
     
  9. akbar92

    akbar92 Support Staff Staff Member

    Joined:
    Jun 3, 2017
    Messages:
    2,318
    Likes Received:
    49

Share This Page