ThemeForest

Storm - Full Screen Background Template

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

Just noticed that my site is no longer fetching tweets. Has there been a change (probably at Twitter’s end) that invalidates the scripting used by this template?

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

Found the issue was fixed in an update. Downloaded the newer version and everything working fine now.

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

Hello!

I also noticed that my site is no longer fetching tweets. Is this issue fixed in an update? How can I update my site, without losing formatting styles?

Unfortunately I noticed since a few months my site isn’t working well in Firefox. The fonts in the navigationbar on top are a bit pixilated. Can you help me with that? Site link: http://www.buwaldafotografie.nl/

Many thanks in advanche!

Greetz, Lara

ThemeCatcher
In the js/scripts.js file find the block of code that starts with:
$(window).load(function() {
And ends with:
}); // End (window).load
Replace the block of code including the lines above, with this code:
$(window).load(function() {
    // Load the Twitter feed
    if (twitterUsername && tweetCount > 0) {
        (function() {
            var t = document.createElement('script'); t.type = 'text/javascript'; t.src = 'http://api.twitter.com/1/statuses/user_timeline.json?screen_name=' + twitterUsername + '&count=' + tweetCount + '&include_rts=1&callback=twitterCallback2';
            var h = document.getElementsByTagName('head')[0]; h.appendChild(t);
        })();
    }
}); // End (window).load
2. The nav font looks fine to me in Firefox. Could you be zoomed in/out in the browser? Try going to View -> Zoom -> Reset

Regards, TC

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

Hello!

I bought this theme and I think it’s great!, Just want to know if in the home page could use code for background images (transitions) and apply them to the container “welcome box” to create different containers that appear and disappear in sync with background images. and if you could tell me how to copy it.

Thank you very much and I hope your comment.

ThemeCatcher

There isn’t an easy way to do it, you would need to edit the fullscreen background plugin. Copy the contents of the file storm/js/jquery.fullscreen.js into storm/js/jquery.fullscreen.min.js and modify it to suit. You would a JavaScript developer.

Regards, TC

Default-user
CruzMtz Purchased

gracias =)!

Default-user
CruzMtz Purchased

thnks!

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

Hello,

Could someone help about customizing the main navigation bar? (the one to the right of the logo).

By default it looks like breadcrumbs, but I’d like to have simple regular boxes, i.e. Company, Services, Partners, Contact Us, etc.

Thanks, T.

ThemeCatcher

Hi,

Is this what you would like? Please add the following CSS into the Theme Options Panel – Advanced – Custom CSS:

ul#horz-nav-ul > li > a {
background-image: none;
padding-right: 20px;
border-left: 1px solid #111;
border-right: 1px solid #222;
}
ul#horz-nav-ul > li > a:hover {
background-image: none;
}

Regards, TC

ThemeCatcher

Actually I think you mean this:

#nav-wrap, #nav-wrap-inner {
background: none transparent;
border: none 0;
}
ul#horz-nav-ul > li > a {
background-image: none;
padding-right: 20px;
background: #121212;
border: 1px solid #222;
margin-right: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}
ul#horz-nav-ul > li > a:hover {
background-image: none;
}
#horz-nav-ul ul {margin-top: 8px;}

Regards, TC

Default-user

Thanks a lot, this solved the issue. Regards, T.

ThemeCatcher

Hi,

PS: If you have not purchased this product – please do so.

Thanks, TC

Default-user

Hi,

I bought the theme yesterday. Seems to be a nice one, so far but struggling with the navigation bar. Why there’s no practical way to customize it? (or if there, is where?)

The MUSTs to be done with navigation bar are:

- Setting a fixed tab width within the navigation bar regardless of the text (i.e. the width of “References” should be equal to “Contacts” regardless of the difference in word length, how to do this?

- It must be possible somewhere to arrange the order of tabs (i.e. if I want to have order of “About Us | Services | Partners” vs “About Us | Partners | Services” , where to do this?

Another thing, which I assume shall be more easily possible but that I haven’t figure out is changing the color & width of top bar (the thick black bar by default)

Thanks in advance for support. T.

ThemeCatcher

Hi,

Sorry the CSS code I gave you won’t work properly in my first post, it’s the CSS for the Storm HTML template. You have posted on the HTML/CSS template board, not the WordPress theme board. Maybe that’s why it shows you have not purchased. If you purchased the WordPress theme can you post on this board please?

Regards, TC

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

Hello.

I bought this template

now my question is how ca i put this theme into joomla? there is no xml-data.

or which programs have i to use to change informations and pics for my page?

Greets

ThemeCatcher

This template is standalone HTML/CSS, not designed for a specific system. We have a WordPress version of Storm, if you are interested.

Regards, TC

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

I did something stupid and I bought this thinking it was the theme for wordpress, is there any solution to transform it into a wordpress theme??

ThemeCatcher

The only way is to get a refund for this version and purchase the WordPress version.

Regards, TC

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

Hi, greate work with this template. I’m trying to change the menu items color and cannot seem to change it from white. Where is the main section of css for this? I cannot seem to work it out. I’ve changes the color wherever I thought possible and it still shows white text. Also I notice that the menu items have classes ie. class=”home”, class=”contact” etc, but there are not such class names in the stylesheet.

I’m sure its something simple and I just cannot see it… must be the long hours.

thanks

ThemeCatcher

Hi,

There is a section at the bottom of the stylesheet for changing these colors. Look for the comment heading called “20. CHANGE THE FONT COLOUR SCHEME”. This is why if you change the code above this it won’t work. You can see the white color is the #f7f7f7 color. But this is used for all links.

If you wish to only change just the nav link color here is the CSS which you can add at the very bottom of your stylesheet.

ul#horz-nav-ul li a {color: #99ef28;}
ul#horz-nav-ul li a:hover {color: #dd0b95;}

The reason these classes are added on the li are so that you can have an “On page” state for the nav. For example; on your index.html page you can add a body class called “home” – <body class="home"> Now you can add this CSS to indicate you are on the home page:

body.home ul#horz-nav-ul li.home a {color: #dd0b95;}

Regards, TC

Default-user
infoshell Purchased

thank you

Default-user
infoshell Purchased

another class a cannot seem to change is the email link in the content page. There is the class email, but changing the color does not seem to work. Links appear white with orange hover.

ThemeCatcher

Hi,

Here is the selector for it so you can add this and modify the colors.

.email a {color: #eaff00; border-bottom-color: #eaff00;}
.email a:hover {color: #ff0000; border-bottom-color: #ff0000;}

Regards, TC

Default-user
infoshell Purchased

thanks

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

Why when entering some email addresses in the contact form I recieve the email, and with other not? Example. I tried asif@hotmail.com and I did recieve it. Then tried kouli@freemail.gr and I did not

thanks

Did more tests and seems like its working.. not sure what happened.

Is it possible to auto-send back a confirmation email to their address once they complete the contact form?

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

Hi great theme but how do I make it usable on a mobile device like an iphone? All the text is far too small on a phone and the buttons are not for the fat fingered

ThemeCatcher

Hi,

We will improve the responsive functionality in the next major update. For now we have made this article which will show you how to make the forms responsive.

Regards, TC

by
by
by
by
by