Hi Jeremy,
1. I’d like to know how can I center the titles in a grid page with three child-pages ?
You can centre the title using some custom CSS.
To add custom CSS, firstly set up a child theme or activate a custom CSS plugin. If you have Jetpack active, then you can also activate its custom CSS module.
Enter the following snippet in either the editor for your CSS plugin or the style.css file of your child theme:
.pique-grid-three h3 {
text-align: center;
}
2. When I surf on my website with my iPhone 4S, each panel seems infinite and I have to scroll a long time to reach the next panel… How can I resolve that ?
Each panel will be sized according to the amount of content that’s in it. Additionally, any content that is displayed in three columns on desktop needs to “collapse” into one column on mobile in order for it to remain readable. These factors mean that the panels will indeed appear longer when scrolling on mobile devices.
There isn’t an easy way around this but I recommend keeping your most attention-grabbing content at the very top and including call-to-action buttons that link to other lower panels in the first panel, as I can see you have done.
Those visiting your site on mobile can therefore click on the one of the buttons in the first panel in order to be quickly taken to the lower, “contact” panel on your site without scrolling.
3. I’ve read another topic (https://www.ads-software.com/support/topic/help-with-pique-theme?replies=16) about a background picture much darker than it should in frontpage. I’ve tried the solutions proposed by Kathryn but it hasn’t changed anything. How can I resolve that ?
The opacity of the very first panel on your home page is the only one that can’t be changed by navigating to Appearance > Customizer > Theme Options.
You can change the opacity of that panel with some more custom CSS though:
#pique-hero .pique-panel-background {
opacity: 1;
}
Change the value of opacity from anything between 0 (the darkest option) to 1 (the lightest option) e.g. 0.1, 0.2, 0.3, etc.
4. In the contact page, I’ve reproduced the overlay on the right side of the page but I haven’t been able to extend its width (it’s much smaller than in the Pique demo) nor to color the symbols.
In the Pique theme’s demo site, the headers have H3 HTML tags wrapped around them. The H3 tags are automatically styled to make the symbols and text the light blue colour.
Here’s an example of how the HTML for the “Phone” header in the demo site looks:
<h3><i class="fa fa-phone"></i> Phone</h3>
In addition, the page has the “Full Width Page” template assigned to it in the demo, which makes it a little wider. To assign that page template to your page, navigate to the editor and then select from the Template dropdown menu in the Page Attributes module on the right.
Hope that information is helpful! Let me know if extra questions come up.