ThemeForest

Aqua - Responsive HTML Template

  • Bought between 10 and 49 items
  • Has been a member for 3-4 years
cfmike Purchased

Maybe a stupid question but ….. how can i set a link on img for the slider ?? When i put a href before the div or before the image tag the img disappear.

blueowlcreative

Could you post some code and paste your URL so I take a look? :)

  • Bought between 100 and 499 items
  • Exclusive Author
  • Has been a member for 6-7 years

Having the same issue as cfmike. When adding a href link around the img class=”slider_bgr” the image disappears. Or I’m guessing the opacity stays at 0. Example:

<a href="#"><img class="slider_bgr" src="images/heroes/002.jpg" /></a>

Basically, I just require 1 large slider image that links to an internal page. Don’t require the animated info on top of that.

blueowlcreative

Hi there,

This is the one I used, you may find more here: http://www.sequencejs.com/themes/sliding-horizontal-parallax/

What’s your URL so I take a look? :)

Default-user

Thanks for the reply. I got it working but it’s a bit of a hack:

<div id="sequence">
<div class="prev"><span /></div>
<div class="next"><span /></div>
<ul>
<!-- Layer 1 -->
<li>
<div class="info"><a href="page.php"><img src="images/blank.png" /></a></div>
<img class="slider_bgr" src="images/large-image.jpg" />
</li>
</ul>
</div>

Basically I created a transparent .png to sit on top of the slider_bgr image and put the link around it.

  • Bought between 1 and 9 items
  • Has been a member for 0-1 years
  • United States

Hello. Thank you again for all your support.

Last question please. How can i make the transition of the home slideshow, when it’s changing to the next one, to change in a slower speed. I think it moves way to fast now when changing slides. I’m talking about the slide that is leaving the slideshow not the ones that comes in.

Thank you

blueowlcreative

Hi,

All transitions are declared after this line:

/* Sequence Slider */

in the styles.css file.

  • United States
  • Has been a member for 3-4 years
  • Bought between 50 and 99 items
kathrin Purchased

Do you by any chance have a LinkedIn icon?

blueowlcreative

You can get it from the WP version ;)

  • Bought between 10 and 49 items
  • Has been a member for 4-5 years

Hi, Just had the ‘sequence slider’ and ‘accordion’ suddenly stop working on my page.

Could you let me know which file might have caused this. I’ve tried using a backup page but now this also won’t work. Would it be the common.js file?

Thanks

blueowlcreative

Check your JS console, it will tell you where the JS error is ;)

  • Bought between 100 and 499 items
  • Has been a member for 0-1 years
ogcprod Purchased

hello,

I bought the Aqua theme – Responsive HTML Template.

how to activate the contact form?

Thank you for your reply,

Cédric

blueowlcreative

Hi Cedric,

You would need an implementation of a server side script (something HTML itself cannot provide for you) and that sure doesn’t come with the HTML theme, search the net, there are plenty of tutorials how to hook a “mail” function to your file and make it a PHP script for example.

Default-user
ogcprod Purchased

thank you for your answer, that you have a simple script that allows you to receive emails via the contact form. I can pay.

Cédric

blueowlcreative

I don’t have anything to plugin to the HTML version, mate. For a fully operational CMS solution along with working forms, contact + search I have developed the WP version… check that out, it makes Content management a breeze too + you get tons of freebies.

  • Bought between 10 and 49 items
  • Has been a member for 1-2 years

Nice template blueowlcreative, but I’ve just wrong into a problem: my client is using IE10 to preview the site, and I’m just now noticing you didn’t list this as one of your supported browsers. The site is now crashing IE for the client. Help please!

blueowlcreative

Hey, wrote you an email, bud, need your URL please.

  • Bought between 10 and 49 items
  • Has been a member for 1-2 years
armgardt Purchased

Is it possible to set the sequence slider to pause on hover?

blueowlcreative

Hey,

Check out this: http://www.sequencejs.com/developers/documentation/

and look for this:

pauseOnHover

Default-user
armgardt Purchased

I assume I add pauseOnHover: true but not sure where to put it.

blueowlcreative

Wherever you initialize the sequence slider in your page.

Default-user
armgardt Purchased

This is the script but it’s not working:

<script type="text/javascript">    
           var preloader = ($.browser.msie) ? false : true ;
$(document).ready(function(){
        var options = {
            autoPlay: true,
            autoPlayDelay: 6000,
            pauseOnHover: true,
            nextButton: true,
            prevButton: true,
            preloader: preloader,
            animateStartingFrameIn: true,
            transitionThreshold: 500,
            fallback: {
                theme: "slide",
                speed: 500
            }
        };
</script>
var sequence = $("#sequence").sequence(options).data("sequence");
})
sequence.afterLoaded = function(){
    $(".info").css('display','block');
    $("#sequence").hover(
            function() {
                $(".prev, .next").stop().animate({opacity:0.7},300);                
            },
            function() {        
                $(".prev, .next").stop().animate({opacity:0},300);
            }
    );
}
$(".prev, .next").hover(
        function() {
            $(this).stop().animate({opacity:1},200);                
        },
        function() {        
            $(this).stop().animate({opacity:0.7},200);
        }        
);
Default-user
armgardt Purchased

I tested in Google Chrome and it’s working there but not in Firefox.

blueowlcreative

Did you check the plugin’s website for more info? :)

Default-user
armgardt Purchased

Documentation doesn’t say anything about conflict in FF. I have emailed them to see if they have a solution.

  • Bought between 1 and 9 items
  • Has been a member for 0-1 years
adoerge Purchased

I am having trouble installing the theme to Wordpress. Every time I try to install it says I am missing the “style.css” even though I see it within the folder. Any suggestions on how I can get this to work?

Thanks for the help.

blueowlcreative

Hi, it shows here you purchased the HTML version, not the WP one… Maybe that is the problem? :)

  • Has been a member for 0-1 years

Shortcodes…

Is there a list of Shortcodes for the Aqua theme? I have been building a site for a client who purchased the theme but I am having issues trying to add the Aqua Latest News list to the main content of the site… I have added the widget to the sidebar, but missing something obvious I think on how to add to the main area….

But if there is a list somewhere that mentions all the shortcodes for the them, that would also be very helpful for reference…

Pj.

blueowlcreative

Basically you can play around with the shortcodes, they are there on top of your editor or look at the Elements page, they are pretty much listed there. You are talking about the Posts Carousel Shortcode.

Default-user

Yeah, I checked the elements page on the demo first but I assume from the above that is is pretty much “if it is on the bar then that`s all there is”?

I was being rather idiotic with the blog page so worked out how to do that but had to get a plugin to do what I wanted as I needed just specific category posts to appear.. Is that possible with Aqua?

I am using the posts carousel on another page, but was wanting to put the shortcode for the “Aqua Latest Posts” into the main body content… The demo site is great for showing what things can look like, but I am not sure enough about wordpress to be able to add what is effectively currently a widget into the main content areas, just the sidebars…

blueowlcreative

As for the main content use the Posts Carousel, just like I did in the Demo, you can also filter posts with the posts carousel, it has category-slug param you can use for that. :)

Default-user

OK, I will see what I can achieve with things… Will ask client if they would like a carousel of latest news. I had the carousel on the homepage for a while so will see how it looks on the news page :).

Thanks for the prompt replies.

  • Bought between 10 and 49 items
  • Has been a member for 3-4 years
0870711 Purchased

Hi, Great template but one very big fault with it. That is the email address in the header. Nasty robots picked up the email and now I am getting lots of spam. I have now changed this to an image, but I fear it’s too late. one email address now useless

This needs to be changed in my humble opinion

Thanks for reading.

blueowlcreative

Hey,

Thanks for your feedback, an image is always better, that’s why the choice to leave your email up there in a text format is yours… :)

Default-user
0870711 Purchased

Hi, The choice may be mine but for people who do not know… Their site is wide open to nasty Bot’s stealing their email address.

  • Bought between 1 and 9 items
  • Has been a member for 1-2 years

Hi there,

I have an image posted on my static Homepage, a banner type image – not a slideshow – And it is not responsive. Is there a short code or do you have any tips?

Thanks -

blueowlcreative

Have you purchased this template. There’s no shortcodes in the HTML version obviously… only the WP. You can achieve what you want though… Let me know which version you are using please :)

Default-user

Hi – yep it’s purchased. max-width:100%; and removed the height directly on the image seemed to work – thanks! :)

blueowlcreative

You got it, you can also do “height: auto;” :)

by
by
by
by
by