Showing 1 – 3 of 3 replies
mmoldaschl

Thanks for a great theme. Apart from […]

mmoldaschl PURCHASED
9 years ago
firstly, thanks for a great theme.

Apart from the main website, I want to create supplementary pages which have no "intro" section. Im struggling to make the navbar show from the very start when there is no intro section....how would this be done?
ThemeGuru
ThemeGuru SELLER
9 years ago
Hi,

Thanks for your purchase.

The issue is caused by some code inside the main.js file ( line 16 till 25 ). This little bit code makes the content on the intro section fade out if you scroll down the page.

So you can delete those lines of code (the fade out effect is gone then) or create a new .js file and paste those lines between this:

$(document).ready(function() { // the code here }

save the file and include it only on index.html at the bottom of the page by this:

<script src="path to the file here.js"></script>

This will fix the navigation issue on supplementary pages.

Regards
mmoldaschl
mmoldaschl PURCHASED
9 years ago
thanks for the quick response.

one more question: the theme doesnt seem to be set up for textareas in the form...when I add these, how do i make sure they also scale for mobile devices/smaller screens like the input areas?

thanks in advance
M
ThemeGuru
ThemeGuru SELLER
9 years ago
If you make a CSS style for the textarea make another for smaller screens using this for example:

@media (max-width: 767px) {
textarea {
width: 100%;
}
}

Then it will always scale on devices with a screen width smaller then 767pixels

Regards