Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #151052

    Josh
    Participant

    Hi X,

    I have a site with 3 buttons.
    How do I make a page the homepage? So the page under button 1 must be the home/front page.
    It must be very simple, but I can’t find it…

    Thanks!
    Josh

    #151151

    Josh
    Participant
    This reply has been marked as private.
    #151361

    Paul R
    Moderator

    Hi Josh,

    1. You can set the page as home page under Settings > Reading then select a static page(kerst 2015 page) for front page display.

    http://screencast.com/t/SYVzfEUsgta3

    2. Disable footer widgets in the customizer.

    http://screencast.com/t/gPmpuzr4

    Then you can add this under Custom > CSS in the Customizer.

    
    body .x-container-fluid.offset-bottom {
         margin-bottom:0;
    }
    
    body .hentry:last-child .entry-wrap {
         border:0;
    }
    

    3. To make it center, you can add this under Custom > CSS in the Customizer.

    
    .page-id-203 .hentry .entry-content {
        text-align:center;
    }
    
    .page-id-203 .ngg-galleryoverview {
        text-align:center;
    }
    
    .page-id-203 .ngg-gallery-thumbnail-box {
        max-width: 120px;
        float: none; 
        display: inline-block;
        margin-right: 5px;
        max-height: 90px;
    }
    

    4. Regretfully this isn’t a feature offered by X. It could be possible with custom development, but this would be outside the scope of support we can offer.

    5. You can check this link https://theme.co/x/member/kb/how-to-setup-galleries/
    to set-up galleries.

    Hope that helps. 🙂

    #151799

    Josh
    Participant

    Thank you very much.

    #151813

    Josh
    Participant

    Hi,

    Thanks for the code below, it works!
    But:
    A) How do you know the page-id? For example I want the other 2 pages also the gallery centered,
    so I than need to just copy paste below 2 times with the right id? So how do I know the id?

    Let me know, thanks,
    Josh

    page-id-203 .hentry .entry-content {
    text-align:center;
    }

    .page-id-203 .ngg-galleryoverview {
    text-align:center;
    }

    .page-id-203 .ngg-gallery-thumbnail-box {
    max-width: 120px;
    float: none;
    display: inline-block;
    margin-right: 5px;
    max-height: 90px;
    }

    #151985

    Nabeel A
    Moderator

    Hi Josh,

    A simple way to find the page id is, Go to pages > edit and hover your mouse over the page name and look in the bottom browser status bar. The last digits after the equal sign ( = ) is the page ID number.

    Hope this helps!