450 comments found.
Hi, I really appreciate pages design, I have a few questions: 1) are you going to port it to angular2? 2) the extended support, does it include bugs with components RTL behavior? I didn’t buy support yet, but willing to. Cheers,
Hi there
Thank you! 
Angular 2 for Pages HTML template, we really haven’t thought about it.
If you have bugs let me know we will fix it right away 
Hi If you like Joomla version please contact me via contact.bluetheme@gmail.com
Hi there
Will do thanks 
Hi!
I tried adding a popup modal over a parallax page. The code is inside <section> and I put the modal on the top just inside the tag though it’s not possible to add a modal on button press over the parallax page. It goes under the page. Would you know how to fix that? My page is looking something like the 01 example page.
Hi there
Modal code has to come above the page-container 
Hi there,
I’m having a problem centering my container at the bottom (pull-bottom) of my section, its on the bottom but all the way to the left. Is there a way for me to center it?
Thanks again for the great theme
Can I get a response on this issue?
Hi there
Sorry about the late reply. Two ways.
We if your content in a div you can put it to a row and center it like this.
Using bootstrap offset
https://stackoverflow.com/questions/18153234/center-a-column-using-twitter-bootstrap-3But if your using flex box which is lovely way you have to write abit of CSS code.
Can you add me to Github? My github username is darretking
Hi there
Yes
I will add you in. Was super busy with Pages update. Almost done
Hi. I am having trouble getting the drop downs in my menu working. It looks to be a problem with bootstrap perhaps and the data attributes. I am not sure if I have missed installing something as I have not used bootstrap before. Comparing my page to your 05 page I can not find what I am missing. You can view it here http://my-sod.com/catalogue. Thank you
Never mind I found the solution. I did not realise that all of the javascript was included in the overlay at the bottom of the html and because I had chopped the html up to create twig templates I had missed this. All fixed now. Great template thanks.
Hi Ace,
I bought 2 of yours 3 themes and I am needing to use Pages Frontend on a Rails application. Could you add me on https://github.com/revoxltd/pages-rails, please?
Regards.
Hi there
Sure
What is your github username ?
leomperes
Done
Got it, thanks!
Hi, appreciate the code. I’m wondering if it is possible to make gallery images go full screen when you click on them. Right now, the cursor changes and the images grow when you hover over them, but I couldn’t find a way to see the image in a larger frame.
Vaughn
Hi there
Extremely sorry for the late reply
You can, add this class
.item-details .dialog__content{
width: 1024px;
max-width: 1024px;
}
To any of the Custom CSS files included
Hi. Thanks! I added this line to the CSS file pages.css, underneath the gallery item class—
} .gallery-item:active > img { opacity: 0.6; }
.item-details .dialog__content{ width: 1024px; max-width: 1024px; }
Is there anything I need to do in the HTML as far as adding the class?
<!- START GALLERY ITEM ->
IGNITEAT
03 Nov 2015
Logo design, Web Design and Branding
<!No that should be it
still not working ?
Hello!
We have one question:
We buy some theme in your site and we want know where are our psd?
Hello Guys,
Kindly let me know if i could integrate the pages frontend stylesheet and the pages admin app stylesheet together. for example I’m using the angular js version of the admin app and like the page frontend from home and blog pages.
Or in simple, how i could use both the system together as one 
Cheers, for your good work
Hi there
We have a sample code ready. What is your GitHub username?
Hi there, do you have some updates on our question. Thank you
Hi there
We sent you an invite for the bundle version
Let me know if you guys were able to see it.
Hi,
which parallax-plugin did you use for “jumbotron full-vh”?
Regards J
Hi there
It’s not a plugin
Its own version of parallax – light weight
Hi. I would like to add a logo carousel above the footer – 100% width, infinite scrolling (repeat). Can this be done with the jumbotron slider? Is there a carousel feature included?
I tried adding this package to the index page however it ended up messing with font weights in jumbotron slider and just wouldn’t work – https://www.solodev.com/blog/web-design/adding-an-infinite-client-logo-carousel-to-your-website.stml
Thanks for your help.
Hi there
I recommend you to use this
https://owlcarousel2.github.io/OwlCarousel2/Its a very famous know plugin and it has a good documentation. If you have issues getting in. Let me know
Hi,
As you have noticed, I bought the front end as well. I am just wondering if the ‘pages and assets’ folder from both dashboard and frontend can be interused or maybe not.
I am creating an application that is partly frontend and partly dashboard, I am scratching my head on how to best utilise your theme, and structure it in my project.
Thank you.
Hi there
We have a sample repository that shares it. Can you give me your GitHub username 
Hi, my github user name is ‘shuurai’, thanks.
Added you in 
Thanks, got it. The page bundle repo I presume. 
Hi,
I have a problem with the jumbotron image. Locally the image is shown but online there is nothing.
Is there anything I missed ?
Also, how can I jump smoothly between section like you do when clicking on the arrow on sample 10 ?
Thanks.
Found my error for the image. But till need help for the sections.
Hi there
May we see your HTML code ? 
You mean images in the “PHILOSOPHIE” section ?
No I have no problems with svg on “Philosophie”. My question was : how can I jump smoothly thru section when clicking on a menu item. The effect I want is the same when you click on the arrow on sample 10.
You can add an arrow btn-arrow and add the following code in your custom.js
$('.btn-arrow').click(function() {
$("#launch").velocity("scroll", {
duration: 800
});
})
.btn-arrow -> is the click element class
I think we do not understand each other
. I want my menu to act the same way as your arrow. Like this : https://www.w3schools.com/bootstrap/tryit.asp?filename=trybs_ref_js_scrollspy_animate&stacked=h
Ah I see
First you need to put ID per section say first section is called “sectionOne” etc
Then you in each like add data attribute like this
data-scroll-spy=”true” data-elment=”sectionOne”
so your home link will be
<a href="#" data-scroll-spy="true" data-elment="sectionOne">Home</a>
Do the same for other’s remember to change the data-element to to the ID of the section
Then your custom js add this code
$('[data-scroll-spy="true"]').click(function() {
var section = $(this).data("elment");
$(section).velocity("scroll", {
duration: 800
});
})
That’s it 
THANK YOU !!!!! 
I’m sorry but I still can’t get this to work. I’ve applied this to “Philosophie” but no smooth scrolling…
May I see the demo again please ?
Yes sure, same link : https://serveur.aureliencoiffard.com/temp/lapouliche/
You have not added the
<a href="#" data-scroll-spy="true" data-elment="sectionOne">Home</a>
Link code I asked you to put on the navigation menu
and I do not see the custom.js file loaded
This is driving me mad !! Still no success…
That is because you have not added the JS code I gave you 
Add it to that file
$('[data-scroll-spy="true"]').click(function(e) {
e.preventDefault();
var section = $(this).data("elment");
$("#"+section).velocity("scroll", {
duration: 800
});
})
add it after ‘use strict’; line
and in the Link<a href="#"></a> Just have the #
This is weird cause the custom.js was in place but the code didn’t work. Now it’s working ! Thank you so much 
Great 
Another question (this is the last !) : How do you apply a background image to the menu header ? Also I want the menu to be perfectly centered (not right-align like right now) ?
How can I achieve this ?
Thank you !
demo site : https://serveur.aureliencoiffard.com/temp/lapouliche/
Hi there
Sorry about the late reply
I think you have already added one
Hey There,
Thanks for your amazing template. I used the template getting started index.html
On the top menu it starts out white and when you scroll down it goes black. I would like the menu to start out black and when it goes back to the top to remain black is that possible?
thanks,
Ludovic
Hi there
Yes simple
make sure the header div classes are following
“header bg-header dark-solid”
“dark-solid” class does the trick
Thank you ace!
Hello Ace.
I’m having problems with data-pages-bg-image. If I pass the image through twig tags it will not recognize the image. I need an image to be the background of a section, can I do it with the img tag instead? How would I do that?
It was my mistake. I wasn’t calling the JS files properly.
If you have any more problems let me know 
Hello,
First of all thank you for your theme.
I just have a problem whit the contact-form.
When i submit the form, the success message is displaying in full window like this : {success has been sent”}}
This page is opening : http://shop-top.eu/conecteo/_lib/mail.php
Thank for your help.
I added this in mail.php script : <script>location.replace(‘http://www.shop-top.eu/conecteo/contact.html') </script>.
Not a really nice solution…
Hi there
This is not meant to be sent as a form submit
that will happen 
If you open up assets/js/contact.js file You will find something called “submitHandler” inside it we submit it as an AJAX and this way the page does not refresh and displays a notification if sent 
To make it work make sure your FORM tag has the following
id="contact-form" action="_lib/mail.php"
Hi – does the pages-rails gem contain both the pages frontend and dashboard? If so, how can I use the frontend? Else do you have a gem for the frontend?
In any case, can you add me to the git repo where you have merged the frontend and the dashboard. GitHub: cderche
Thank you.
Hi there
Sorry, we do not have rails gem for pages frontend 
Hi,
I never got a response to my email. I wanted to know what found you used for the logo and if you could send me the .psd?
Thanks!
font*
Hi there
We sent you a response on the logo long time ago 
Hi, i try to apply pages.social to my website, normally it would showing like this:
https://ibb.co/dcavGQbut when we click somelink to go somepage and back to home page again, then it just showing like this. there is no space between the card. can you help to fix this issue?
https://ibb.co/jdTt35thanks
Hi there
Go to pages/js/pages.social.js in that you will find gutter:20 is it present ?
yes, Social.prototype.init function, i found this one:
setTimeout(function() { this.$day.length && this.$day.isotope({ “itemSelector”: this.options.item, “masonry”: { “columnWidth”: this.colWidth, “gutter”: 20, “isFitWidth”: true } }); }.bind(this), 500);
so, can you fixed?
thanks
Hi ace, any update to this issue?
Hi,
Can you do a small test? Does the grid auto adjust when you resize after you come back? Do you have any errors in your console? Will it be possible for us to have a jsfiddle to do your demo?