79 comments found.
The design is very nice. I like it. You write that it is error-free, but I found in the CSS document 122 errors and 773 warnings: https://jigsaw.w3.org/css-validator/validator?uri=http%3A%2F%2Fcreazione.avanzare.co%2Flegendary%2Fdemo%2Findex-1.html&profile=css3&usermedium=all&warning=1&vextwarning=&lang=en
The html document is unfortunately also not completely error free: https://validator.w3.org/nu/?doc=http%3A%2F%2Fcreazione.avanzare.co%2Flegendary%2Fdemo%2Findex-1.html
Hi,
thanks for the feedback.
The HTML code is not W3C validated simply because W3C validation is completely outdated. We use tools like autoprefixer to make our templates and themes cross-browser functional.
As you can see on our demo page the template is completely functional.
Most of the errors are from the CSS compression we use on the demo page. Both W3C validators are not able to work with compressed files.
Unfortunately, the CSS validator found on jigsaw.w3.org/css-validator is completely outdated and is returning wrong errors.
For example, it returns the following error:
Property user-select doesn't exist : none
But on the page w3schools.com, you can directly see the value “none” exists.
https://www.w3schools.com/cssref/css3_pr_user-select.asp
And on the Mozilla developer page, you find the same info.
https://developer.mozilla.org/en-US/docs/Web/CSS/user-select
I strongly recommend doing your own research. Using these validators will only give you a wrong picture of the code quality.
Kind regards,
Lara
Hi Lara, thank you for your answer. You write in the item details: ”...based on the w3c standards.” So I thought the w3c standards are considered. Now you write: “The HTML code is not W3C validated…”
Hi,
I’m sorry this was outdated marketing material. We updated the material.
Kind regards,
Lara
when i open the page for the first time, the different objects like particles and background image move in from the BOTTOM how can i make them just fade in ?
Hi,
you can find the CSS that controls the page enter hero animation in your assets/css/hero.css file.
Scroll to Hero section 1,2,3 or 4 based on the selected index file. Then look out for “PAGE ENTER ANIMATION ” code comment.
The code below shows the animating css for the <p> element for example:
.hero-4 .front-content.page-enter-animated p
{
-webkit-transform: translateY(80px) !important;
transform: translateY(80px) !important;
opacity: 0 !important;
}
.hero-4 .front-content.page-enter-animated.show p
{
-webkit-transition: all .6s cubic-bezier(.5,.34,.06,.82) .3s !important;
transition: all .6s cubic-bezier(.5,.34,.06,.82) .3s !important;
-webkit-transform: translateY(0) !important;
transform: translateY(0) !important;
opacity: 1 !important;
}
Kind regards,
Lara
i set translateY to (0px) but when i first enter the page the background and the particles still fade in from the bottom ?
Hi,
I’m sorry I forgot that part.
In your assets/css/hero.css file under section 1. FOUNDATION you find the following CSS code that controls the page enter animation of the particle effect.
.hero .background-content #canvas
{
top: 100%;
-webkit-transition: all .8s cubic-bezier(.5,.34,.06,.82) 1s;
transition: all .8s cubic-bezier(.5,.34,.06,.82) 1s;
opacity: 0;
}
.hero .background-content.page-enter-animated.show #canvas
{
top: 0;
opacity: 1;
}
Kind regards,
Lara
hey, i really liked your template, and i bought it for this page specially, http://creazione.avanzare.co/legendary/demo/index-4.html?bg=gradient but the page cannot be found in the downloaded files.
Hi,
there is only 1 index file. You can switch to the gradient background via the config.js file.
Kind regards,
Lara
okay, i got that, now the problem is my contact form is not working. i am not getting notified form submission on my email, also in contact.php what is // ENTER IDENTIFIER ???
Hi,
This could have several reasons. In most cases, it is a problem with the hosting configuration ( PHP mail() function not supported, or outdated PHP versions. ).
Please send me a link to your website that I can investigate this problem. Please use the contact form on this page if you don’t want to post your website publicly.
The email identifier is the subject line of the email you will receive.
Kind regards,
Lara
I’m having trouble with smoothscrolling from links not in the navigation. Any links I add outside the nav, just immediately jumps abruptly to the section. Any advice on how to solve this?
Hi,
the navigation is a closed system.
Add the following code to your assets/js/custom.js file.
$(document).on('click', 'a', function(event){
event.preventDefault();
$('html, body').animate({
scrollTop: $( $.attr(this, 'href') ).offset().top
}, 500);
});
This will make smooth scrolling globally available for all on page links.
Kind regards,
Lara
Also I am seeing fonts icon “t-email” is having padding . Any way I can remove it
Hi,
please add the following CSS to your assets/css/custom.css file. Replace the “your element selector ”.
*your element selector
{
padding: 0 !important;
}
Kind regards,
Lara
In them when i click on Work,Process it slides correctly. But if dont want those sections to have that huge padding for padding-top-140 or so and i reduce padding on slide it shows partial previous section. Is there easy way to fix it
Hi! I am very interested in purchasing this! Are you Sphere and Mesh backgrounds created by you and so unique only to your Legendary site template and Coming Soon theme?
Hi,
they are not created by us. We only did the implementation and added some features to them. They are not unique to our templates or themes.
Kind regards,
Lara
Thank you. Is the Mesh background shown here on the Gravity WP demo: http://creazione.avanzare.co/gravity_wp/demo/?bg=mesh available on the Legendary Site template? I love the reds and the mostly black.
Yes,
the Mesh background is integrated into the Legendary One Page template. Please notice that Legendary is not a WordPress theme like the Gravity theme.
Kind regards,
Lara
Yes, thank you. Understood. The mesh demo in Legendary is different from the Mesh demo in Gravity. But will I be able to adjust settings in Legendary to get the same exact mesh demo used in Gravity http://creazione.avanzare.co/gravity_wp/demo/?bg=mesh?
Yes, you can change the color of the lines and the background color via the included config.js file.
Kind regards, Lara
Excellent! Thank you. Also, as an alternative background later, I will purchase a looped video from videohive. It is a Pre-rendered clip, in Full HD 1920×1080 (fps 29.97). Duration: 30 seconds. Seamless loop. For this to be used, I would have to integrate it as a YouTube video?
Yes,
you have to upload the video to youtube at first and then you just have to insert the video link in the config.js file.
Kind regards,
Lara
Ok, thank you. And it doesn’t matter whether the video is public, unlisted, or private on YouTube?
You can not set it to private. Or your website will not get access to the video files. But you can set it to unlisted or public.
Kind regards,
Lara
Thanks. I’ve purchased and am happy! How can I center the services tabs? I’ve reduced the items from 5 to 3 and need to center the items. Thanks!
1. I really like your theme designs, but what I really need is your Sphere animation from your Coming Soon theme, implemented here into this theme, are you able to do that and include it? 2. Can I also use Woocommerce with this theme? 3. Can I also use Visual Composer with this theme? 4. Can this also have a full blog section, where the posts are their own pages?
Hi,
Legendary is not a WordPress theme but the sphere background is already integrated.
Kind regards,
Lara
Hi! Just found some scrolling issue on iOS systems using the ?bg=waves and ?bg=sphere. I’ve send you more details via contact, please check. Everything else working perfectly thanks for great theme!
Hi,
thank you for your feedback.
We fixed the issue and updated the files. You can now download the fixed files from ThemeForest.
If you don’t want to start all over again then you just have to replace your “assets/js/hero.js” with the latest one.
This will fix the scrolling issue.
Kind regards,
Lara
Thanks for the quick reply and release of the fix, already tested the last version v1.43 and it works fine! Many thanks for all the theme and top notch support. Really awesome!
Why do Phone Numbers that I add to site disappear when I view the them on an iPhone? How can this be fixed. Everywhere I add a phone number is just shows up blank on the mobile version.
Hi,
this sounds very strange.
Can you send me a link to your page that I can investigate the problem?
How do you add phone Numbers to the site?
You can send me the page link via the contact form on the following page. https://themeforest.net/user/avanzare
Kind regards,
Lara
Hi Avanzare. Are there any indications to add a captcha to the contact form? Too many spams
. Despite my attempts I can’t get the Google API to work properly. Thank you!
Hi,
Are you using the latest version of Legendary? We already added an antispam honeypot captcha in version 1.2. This should protect you against machine based spamming.
Kind regards.
Lara
I was on the old one. Thank you so much.
Hi. Can I by your template and include the awesome heroes in another template?
thanks
.
Yes, you can under the following limitations:
1. The template can only be used on one domain per regular license.
2. The template can’t be sold or distributed in any way.
Kind regards,
Loic
Hi there!
Thanks for great template. I just wanna know how to remove darkness filter or be brighter opacity HERO youtube ver. too dark I think. cannot find anywhere.
please let me know how to do it 
Hi,
thank you for your feedback.
Please do the following:
1. Open your assets/css/custom.css file.
2. Insert the following CSS code in this particular file.
.hero .bg-overlay
{
opacity: 0.35 !important;
}
3. Adjust the opacity value to your requirements.
4. That’s it.
Kind regards,
Lara
Thanks, works good!
And one more question.
I wanna load my contents board to Work tab.
like this page. “http://www.nemocultures.com/#http://www.nemocultures.com/6697” “http://www.nemocultures.com/6697”
it only load content div (.pcw) by ajax.
how can I patch it? (of course I can access target source..)
I though work like this on your template, but it wasn`t.
I cannot make all contents to “showcase-popup-full-page-image-1~120.html”
Please help me.
Regards, HK
Hi,
I’m sorry but I’m a little bit confused.
Do you want something to look like shown on the pages you linked to or is something is not working correctly?
But if you want to use the showcase popup full page image for all work items than you have to make sure that you set up all ajax pages correctly and that they are linked correctly.
And could you please provide a link to your website that we can locate the problem?
If you don’t want to post a link to your page publicly you can contact us via the contact form on the following page.
https://themeforest.net/user/avanzareKind regards,
Lara
I`ve found some code from Cube Portfolio`s comment
$(”#result”).load(“Page.html #AjaxContent”);
https://codecanyon.net/item/cube-portfolio-responsive-jquery-grid-plugin/6372959/comments?utf8=%E2%9C%93&term=%24%28%22%23result%22%29.load%28%22Page.html+%23AjaxContent%22%29%3B&from_buyers_and_authors_only=0&order_by=relevanceHi,
do you want to create a popup like “Showcase Ajax Full Page/Image” with the content from http://uristudio.com/pages/ajax/popups/work.html ?
Kind regards,
Lara
Yes excactly.
I`ve made a board for portfolio. http://uristudio.com/portfolio and mads similar div as <!wanna use only SHOWCASE POPUP parts for http://uristudio.com/ ajax WORK page
regards, HK
and it`s showcase ajax full page / video
Ok,
you have to use the default template to use the ajax default setup. Otherwise, the content will not appear.
In this case use one of the following templates
pages/ajax/popups/showcases/showcase-popup-full-page-image.html
pages/ajax/popups/showcases/showcase-popup-full-page-video.html
Then you just have to duplicate the default template and rename it and finally, you have to link to it from your work grid item.
Don’t load a complete page via ajax like you are currently doing because it causes a lot of errors.
Kind regards,
Lara
Hi there!
Great template, but i want to add a “Company” field to the contact form. I tried it myself, but then suddenly i have a phone field instead of the email field? I think the phone field is for spam or anything. But i cant get it to work. Can you help me out?
Coen
Of course, we will help out.
You have to place it below the phone field( honeypot captcha field ) or change the CSS class that is hiding the honeypot captcha.
But you also have to modify the PHP and ajax part of the contact form or it will not work correctly.
This will take a little bit longer to explain therefore I strongly recommend to do that this via mail.
Therefore please use the contact author button on the next page.
https://themeforest.net/item/legendary-one-page-parallax-html-template/17976316/supportKind regards,
Lara
Hy there, in the main slider on every picture there’s a H3 subtitle. I’ve noticed an odd thing: on all the “long” letters like j,g,y,p there seem to be a piece (the bottom part of the letter) that’s cut off. Can you check, please. Thnx
Hi,
the problem is based on slider revolution.
Somehow it is not able to render the h3 element correctly.
Please add the following CSS code block to your template as a workaround.
.tp-mask-wrap
{
overflow: visible !important;
}
Kind regards,
Lara
In which css file should i put this?
Just put in assets/css/layout.css but you can place it everywhere if you want.
Kind regards,
Lara
I’ll try, thank you
Hi, mine “Services” section has got white letters. Is there a way to change all in the SERVICES container to black. Thank you
Hi,
you can simply change the content bg class to get darker text.
Locate the following content tag in your service section:
<!-- CONTENT --> <div class="content bg-black bg-parallax block-service-1 padding-top-130 padding-bot-200" />
<!-- CONTENT --> <div class="content bg-white bg-parallax block-service-1 padding-top-130 padding-bot-200">
That’s it.
Kind regards,
Lara
That’s working. Is it possible for the “services” section to have a static picture, not parallaxed?
Please do the following to disable the parallax effect for the service section.
Add the following CSS code somewhere. It is not important where.
#service .dzsparallaxer .dzsparallaxer--target
{
height: 100% !important;
}
Kind regards,
Lara
Hi, that worked well. But now I have another little problem with the “service” section background picture I provided: Before I removed the parallax effect as you described above, when I looked at this particular section on a smartphone i saw only the central part of the photo (the lady in white, much bigger than it’s now) so all the text could be red well (black text on white-ish background..just fine). Now, when removing the parallax and when resized to a smartphone screen view, I see the whole picture (3 mini pictures) and the black text is hardly going to be red fine. My questions are: A) can I set the format/size of the picture when used on smartphones? B. move a bit lower the whole text in black so it doesn’t hopefully overlapse with the background picture? Thank you
Can you just help me out with the B section “B. move a bit lower the whole text in black so it doesn’t hopefully overlapse with the background picture? ” .Think that would be for the best
thnx
Hi,
I recommend changing the background image overlay color instead to make the text more readable.
Just add the following CSS code somewhere ( For example: assets/css/layout.css ).
#service .bg-overlay-section
{
opacity: .3 !important;
background: rgba(255,255,255,1.00) !important;
}
Kind regards,
Lara
Maybe i will use the overlay color for a better reading experience, but i’d really like to push the whole text box lower, underneath the existing photos so they don’t overlap visually
It is not possible to push the text below the image because the image will always fill the whole section.
But you could create a new section ( copy & paste another ) and insert the tab text element in it.
Or you could give the text element a background color.
Kind regards,
Lara
Hello,
What kind of cookie information/bar can be included?
I tried “https://cookieconsent.insites.com/” but no luck.
Thanks Dirk
Normally a cookie info bar should not interfere with the template. Maybe the CSS is not applied correctly or it is placed at the wrong position.
If you sent me a link I can check what exactly went wrong.
You can also send me the link privately via the form on the following page.
https://themeforest.net/user/avanzareKind regards,
Lara
Hello Avanzare, thanks for the great support so far. I have a couple of questions: 1) is it possible to have the navigation(menu) bar always on top of the page (even on the first main slider?) , 2) the ABOUT section: even if I find it nice,all of my friends find it confusing to have texts and pictures have an order of appearance/reading from up to down (column style). Is it possible to put them into a row style, from left to right ( in the first line some text, on the right of that the picture associated to that text. Then in the next row a picture, and on the right of it the associated text) 3)the pictures that have the parallax effect: can I change the intensity of the effect ? Would like to have a greater impact on the pictures.
A Big Thank You
Hi,
I will answer your question in bursts one by one.
Kind regards,
Lara
—> Question 1
Please do the following:
1. Open your config.js file.2. Find the following code line:
var option_navigation_mode = "sticky";3. Change it to:
var option_navigation_mode = "fixed";4. That’s it.
—> Question 2
The structure is based on the bootstrap grid system, therefore you can simply rearrange everything.
The following link will help you to understand the bootstrap grid.
http://getbootstrap.com/css/#grid—> Question 3
Please do the following:
1. Open your assets/css/layout.css file.2. Jump to section “6. PLUGINS” right at the bottom.
3. Locate the following css code block:
.dzsparallaxer .dzsparallaxer--target
{
height: 144%;
}
4. Increase the height value.5. That’s it.
If something should not be clear or you need help with something else feel free to contact us again at any time.
Kind regards,
Lara
I have a bit of a font issue: i’ve opened my test page today on my other computer. It seems like the font provided hasn’t loaded the Croatian letters (č,ć,š,đ,ž) on IExplorer and MS Edge . I’ve got a screen capture if you’d like to see.. Thanks
Hi,
for this kind of letters, you have to include latin extended in your font request.
Please do the following include latin extended:
1. Open your index html file.2. Locate the following link element at the top of your index file.
<!-- GOOGLE FONTS --> <link href="https://fonts.googleapis.com/css?family=Dosis:200,300,400,500,600,700,800|Open+Sans:300,400,600,700,800" rel="stylesheet">3. Replace it with the following link element.
<!-- GOOGLE FONTS --> <link href="https://fonts.googleapis.com/css?family=Dosis:200,300,400,500,600,700,800|Open+Sans:300,400,600,700,800&subset=latin-ext" rel="stylesheet">4. That’s it.
Kind regards,
Lara
Thank you..again
Hy, I’ve put up a test site, though it’s not finished yet. It works on Chrome and Microsoft Edge but it cannot load in Internet Explorer 11 and neither on my Blackberry phone’s browser . Any idea? Thank you
Hi,
could you please send us a link from your page that we can locate the problem asap.
Please use the contact author button on the following page.
https://themeforest.net/item/legendary-one-page-parallax-html-template/17976316/supportKind regards,
Lara
Link sent. Hope you’ll find something to solve the problem 
Hi,
I already answered your mail.
Kind regards,
Lara
I did get the answer about the “not seeing the google map” problem, thank you. But does it mean that this will solve the problem mentioned above too? (Not opening the page under the IE11 and on my smartphone?
Yes, this will solve the problem when you are using the latest version of Legendary.
Hy, I have inserted the API key and it solved the problem of not seeng the google map. Now it’s displayed correctly.
But it didn’t solve the second problem which is that the page doesn’t load when I try to open it with Internet explorer. Tested wit IE versions 10 and 11 and it just stucks trying loading the page. Pls help
Hi,
I found out that you are using an older version of Legendary.
The version you are using has an IE only bug.
Please do the following to fix it:
1. Open your assets/js/script.js file.2. Jump to section /** 2. PORTFOLIO .
3. Replace the following code block.
// DEFAULT CAROUSEL ( Cube Plugin )
$(".default-carousel-1").cubeportfolio({
layoutMode: "slider",
drag: true,
auto: true,
showNavigation: false,
showPagination: true,
rewindNav: false,
scrollByPage: false,
singlePageDelegate: null,
gridAdjustment: "responsive",
mediaQueries: [{
width: 900,
cols: 3
}, {
width: 600,
cols: 2
}],
gapHorizontal: 0,
gapVertical: 40,
caption: "opacity",
displayType: "fadeIn",
displayTypeSpeed: 100,
lightboxDelegate: ".cbp-lightbox",
lightboxGallery: false,
lightboxTitleSrc: "data-title",
singlePageDelegate: ".cbp-singlePage",
singlePageDeeplinking: false,
singlePageAnimation: "fade",
singlePageStickyNavigation: true,
singlePageCallback: function(url, element) {
var t = this;
$.ajax({
url: url,
type: "GET",
dataType: "html",
timeout: 10000
})
.done(function(result) {
t.updateSinglePage(result);
})
.fail(function() {
t.updateSinglePage("AJAX Error! Please refresh the page!");
});
},
});
4. With the following code block.
// DEFAULT CAROUSEL ( Cube Plugin )
$(".default-carousel-1").cubeportfolio({
layoutMode: "slider",
drag: true,
auto: true,
showNavigation: false,
showPagination: true,
rewindNav: false,
scrollByPage: false,
gridAdjustment: "responsive",
mediaQueries: [{
width: 900,
cols: 3
}, {
width: 600,
cols: 2
}],
gapHorizontal: 0,
gapVertical: 40,
caption: "opacity",
displayType: "fadeIn",
displayTypeSpeed: 100,
lightboxDelegate: ".cbp-lightbox",
lightboxGallery: false,
lightboxTitleSrc: "data-title",
singlePageDelegate: ".cbp-singlePage",
singlePageDeeplinking: false,
singlePageAnimation: "fade",
singlePageStickyNavigation: true,
singlePageCallback: function(url, element) {
var t = this;
$.ajax({
url: url,
type: "GET",
dataType: "html",
timeout: 10000
})
.done(function(result) {
t.updateSinglePage(result);
})
.fail(function() {
t.updateSinglePage("AJAX Error! Please refresh the page!");
});
},
});
5. That’s it.
Kind regards,
Lara
Thanks for the fast response, will try that soon and let you know. thnx
Works like a charm
5 star support
Thank you for your feedback.
If you need help with something else you can contact us at any time.
Kind regards,
Lara