-
AuthorPosts
-
November 23, 2014 at 10:58 am #151052
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!
JoshNovember 23, 2014 at 5:18 pm #151151This reply has been marked as private.November 24, 2014 at 2:15 am #151361Hi 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. 🙂
November 24, 2014 at 11:59 am #151799Thank you very much.
November 24, 2014 at 12:12 pm #151813Hi,
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,
Joshpage-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;
}November 24, 2014 at 4:23 pm #151985Hi 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!
-
AuthorPosts