Turning off gallery on the main page

Discussion in 'StartPoint Business One Page WordPress Theme' started by butterflyhollow, Mar 26, 2014.

  1. butterflyhollow

    butterflyhollow Guest

    Joined:
    Mar 25, 2014
    Messages:
    7
    Likes Received:
    0
    Is there a custom CSS that can be added to turn off the gallery section on the home page? Thanks!
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,
    Firstly download the latest copy of StartPoint Theme from the members area (http://inkthemes.com/members/member)
    and, upload and activate it in your dashboard.

    Follow the link given below for reference.
    http://www.inkthemes.com/how-to-update-a-premium-theme-by-inkthemes/05/
    And after that paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .home .parallax-container {
    display: none;
    }
    .home .gallery-wrapper {
    display: none;
    }  
    This will remove the gallery section from the home page.
     
  3. aquay

    aquay Member

    Joined:
    Sep 16, 2013
    Messages:
    44
    Likes Received:
    0
    I tried this html on my new site to remove the gallery on the front page but it's still showing.

    What can I do to remove this gallery on the front page?

    Also, we don't want the Blog Posts showing on the front page either, do you have a code to remove this also?
     
  4. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    div.blog-container {
    display: none;}
    .parallax-container {
    display: none;
    }
    Thanks & Regards
    Nitesh Raghuwanshi
     
  5. aquay

    aquay Member

    Joined:
    Sep 16, 2013
    Messages:
    44
    Likes Received:
    0
    Thanks Nitesh,

    The code you gave me worked and took out the blog and gallery but now there are two white windows where the gallery was with a small window saying:
    One saying ALL and the other saying This is a default gallery image you can insert your own images or remove it.
    Would you help with removing this?
    Our website is : http://www.diamondedgemarketing.com
     
  6. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .gallery-wrapper{
    display:none;
    }
    .blog-wrapper{
    padding-top:0px
    }
    Thanks & Regards
    Nitesh Raghuwanshi
     

Share This Page