392 comments found.
Hi, nice template. The only problem I am having right now is for the images that I want to display on the portfolio or gallery section. When the images are viewed through a regular size laptop (15’‘) the image looks cut off.
Thanks
It’s meant to be that way. You might tweak the size and position with a custom stylesheet if you’d like.
Nevermind found it. Though the question about how to know when new Vegas are out is still open to reply.
Hey Emanuele -
Finally bought the template and just wondered do I get update notifications sent to my email? Or how do I know when version (currently 1.1.6) updates occur just re-download and check? Would be nice if there was a ‘current version’ field on the public profile for Vega. Perhaps the download filename changes slightly if there’s an update? Cheers!
I’m a freelance animator and wanted an HTML 5 template to redo my website, so I bought this one. Beautiful design and very easy to customize. A steal at $15! Great work Flashedge and a big thank you!
Comments like this fill me with pride in what I do. Thank you, I really appreciate it! 
still waiting for wp version
ready?
It’s still under development. Feel free to follow me to be notified when it’s ready.
my client is waiting for this theme (WP version). 
I’m sorry, master-t. There is a lot to do for making it work flawlessly under Wordpress. Better delay the release than selling an half-baked product.
Quick question.. maybe someone already asked it but thought I’d ask anyway since you’re (Emanuele) obviously the UI god here.. just was curious how to make it so when the top menu opens it doesn’t push down / animate the body below?
There is an option provided for this and is documented in the userguide.
Grazie!
Hey great template! Simple question… Locally the site navigates correctly, however when I upload it to the server each of the links has a ”#” added the the start of it, which is not an accurate link so it keeps reloading the index file. Any idea where this might be coming from. again it works fine locally and it happens on all browsers. I’ve tried clearing out the cache.
I should note that this is in a subdirectory for testing. I haven’t tried putting it in my root on my webserver yet. So where I’m seeing this issue is www.mysite.com/newsite
The main page will come up, but if I try to navigate it looks like this: www.mysite.com/newsite/#reel.htm
If I take out the # it works fine (if I add an “l” at the end). Where is that coming from?
Thanks for reporting. Version 1.1.5 had an issue with deeplinks which was fixed in version 1.1.6 – you can download it from your dashboard. Overwrite the js folder and you’re set.
Vega theme won’t install….
I keep getting the following message: “Unpacking the package… Installing the theme… The package could not be installed. The theme is missing the style.css stylesheet.
Theme install failed.”
There’s a file in the folder called ‘styles.css’ – but If I try and rename this by dropping the ’s’ off styles – it doesn’t work either.
Please can you help.
Hi Matt, I’m sorry but this template is not a Wordpress Theme. Feel free to follow me to be notified when the WP Version will be released.
Great theme! lovely to edit and everything is in order.
one question Audio looping, how to get it off? i just like to get one intro sound and then without audio.
Thanks for the kind words.
You can disable the audio looping by removing the “trackEnded” event block from the net.flashedge.app script which is near the end of the file around line 1807. Remember to save the file with a min suffix and minify it for good results.
Thanks! ( I tried to find settings from audio.js…)
Super cool support, just with 15$
How can I keep opaque effect front of the slideshow in version mobile?
For performance reasons the background fades out and is hidden when not in the viewport of the mobile device. This way the memory usage is kept low and the scrolling is smooth. The opaque effect is kept anyway.
You might try to disable this by commenting out the block around line 103 of the net.flashedge.app script where you’ll find a comment about this. Remember to rename the file with a min suffix and to minify it.
Last question: And to increase more opaque in normal background, do you know wich line in js need I adjust?
Thank’s
Just edit the ”.opaque” class or create a new one in your custom stylesheet with the same name that overwrites it.
Hey thanks for your last reply! Still working it out.
Another question today – is it possible to disable the background image slide when viewing the site on mobile phone devices? It takes a while to load up and I don’t want users to wait that long under 3G connection.
Thank you in advance. Have a great day! Cheers, arkcrft
Try to add the “hide-on-phones” class to the bg div. It should not show up on mobile devices this way. I’m not sure if it’s still cached though, you might need to code a check on your own to disable the container.
Hi my friend i have problem with the contact form when someone send me a message the mail i receive it doesnt show the email that user left me or his name or anything else…the only thing i receive is dots….....
It sounds like you’re getting an empty form. I need to inspect your site to find out what’s wrong. Contact me privately for assistance.
Hello! Congratulations about the template, it’s awesome. I’m trying to open files with extension .php but it isn’t work very well.
When I open just html, the ajax load perfectly but when I call a php file nothing happens.
Any idea?
I’m not sure, but you should maybe adapt the net.flashedge.app script to load php files instead of html files. Locate inside the script the ”.html” parts and replace them with ”.php” – safe and minify the script by adding a .min suffix like the existing file.
I’ll include a check in the next update to detect the extension automatically.
It’s works. I just replaced .html to .php. But I needed to change too this line: window.location = ”#” + (E(this).attr(“href”).substr(0, E(this).attr(“href”).length – 5)).replace(/./, ””)
to
window.location = ”#” + (E(this).attr(“href”).substr(0, E(this).attr(“href”).length – 4)).replace(/.[\\\/]/, ””)
Because .html is 5 characters and .php is just 4. If you does not make that change, it wont work. The anchor always will be missing the last character.
Thank you!
Thanks for sharing! I’ll add this in the next update for other users. 
Hi great template! Just purchased this last night and have been working on it since. I would like to know is it possible to have the two maps displayed side by side? I am trying to show two office locations in the CONTACT page. Many thanks.
markers:[{address: a}]
Add more markers, like this:
markers:[{address: a, address: b, address: c}]
Where b and c are your own variables to configure.
You can read the whole documentation of gMap here: http://www.smashinglabs.pl/gmap
Once you’ve done the changes you either link the uncompressed javascript or minify it to replace the old one.
Does the background image support swf files?
No, I’m sorry. They won’t be compatible with iOS.
It seems when i make some changes they are global to the whole site but not others. For example, if I change the nav bar on the homepage it changes on the site globally but when I check the code for the other pages the code does not reflect the changes. It is the same with the audio. If I turn off auto play on the homepage…autoplay turns off for the whole site, but the code on all the other pages does not reflect it.
How do I correct this?
It’s an AJAX based template. This means that parts of it are persistent accross the whole website and only the part highlighted with the comments is loaded at runtime. If you’d like to skip it, add to your anchor tags a target attribute set to “_self” and it should refresh the whole page at each click.
Thanks for the quick response. I’m still a bit confused by this (this is my first time using HTML5 and AJAX based themes)...I know how to add a target attribute but I’m not clear on where to add it. What I want to do is have music autoplay on certain pages but not others.
Do I add the _self tag to this: <audio preload autoplay></audio> and if so, should it look like this?: <audio preload autoplay target=”_self”></audio> and do I do that to every page or just the index.html page?
thanks again for your help
The music player is persistent, this means it’s loaded only once and keeps it’s behaviour like that for the whole site.
If you’d like to skip the AJAX loading, add the target attribute in the anchor tags located in the main menu. It’s up to you which ones will have such attribute.
Here’s an example:<a href="works.html" class="main" target="_self">Works</a>
This way once clicked the new page will reinitialize everything, including the music player.
I just purchased this template and I have 2 questions: 1) Where is the userguide? I don’t see it in any of the folders 2) When I upload it, I receive a failed error. It says its missing a “stlye.css” file.
The userguide is located in the docs folder. The template is not a Wordpress Theme, I’m sorry.
hi, i have a question for people who have purchased this template. does it work for you on iphone? for me it’s not working on iphone. it works fine on some kind of smartphones like samung galaxy (it works great with it!!) but NOT with iphone… why? the author is very kind and helped me a lot, and i’m happy to have purchased this template but i want to ask if some other people have the same problem. thanx
The template was tested on iPhone 3GS, iPhone 4S, iPad 2 and the new iPad and it works just fine. You can see it yourself in the preview, just close the frame on the top to see the responsive layout working.
Hello, how can I do that in project.html photos were loaded separately (after pressing next/previous button) but not preloaded before all together? Is it possible? Thanks
Hmm, not directly. You’ll need to modify the script of the orbit slider, which is not a great idea. The project page was not intended to handle a big amount of images. The best way to store your pictures is to divide them in more pages.
Looks like I may be having an issue with the anchor tags. I did rearrange the use of pages. Using video page as home and then a couple other pages.
They load just fine to me. If you have further issues, feel free to drop me a private message for assistance.