JoNa
- Bought between 1 and 9 items
- Europe
- Exclusive Author
- Has been a member for 2-3 years
- Referred between 1 and 9 users
- Sold between 50 000 and 100 000 dollars
1,195
Purchases
Buyer Rating:
4.42 stars
4.42 average based on 93 ratings.
-
5 Star
6165%
-
4 Star
1819%
-
3 Star
1010%
-
2 Star
00%
-
1 Star
44%
| Created | 19 May 12 |
| Last Update | 6 May 13 |
| Columns | 4+ |
| Compatible Browsers | IE7, IE8, IE9, IE10, Firefox, Safari, Opera, Chrome |
| Software Version | WordPress 3.5, WordPress 3.4, WordPress 3.3, Other |
| Documentation | Well Documented |
| High Resolution | Yes |
| Layout | Responsive |
| ThemeForest Files Included | Layered PSD, HTML Files, CSS Files, JS Files, PHP Files |
| Widget Ready | Yes |
- android
- corporate
- css3
- flexible
- gzip
- html5
- ipad
- iphone
- mobile
- monopage
- one page
- responsive
- retina
- simple
- single page
© All Rights Reserved JoNa -
Contact Envato Support


Hello Disclaips,
Thank you for your comment. How did you insert the widgets exactly, did you use the
[widget area=*]shortcode? What do you mean by stopped working, is the page layout broken? or are the other sections missing totally from the page?It would greatly help me investigate if you could provide a link to your site so I can take a look. Please let me know where can I see the issue online so I can better help you! Thanks, I look forward to your reply
Best,
Jonathan
Site on local host and I can’t show it right now. Missing all sections except “Footer” after section with widget. Example: If I put [widget area=1] (with not native widget) in Features, section Price will not work.
Maybe this screenshot can help. http://dl.getdropbox.com/u/3788970/0100.png
Hi Disclaips, thanks for the follow-up and for the screenshot. It’s really hard to know without actually seeing the page, as those javascript errors are normal if there’s HTML code missing or corrupted HTML structure, and that could happen in case of a PHP error.
If the theme works fine without the third-party widget then it’s an issue related to the widget itself and not to the theme, there could be eventual conflicts between the two but in the case you describe it looks more like a server-side error and it is more likely to be generated by the widget itself. What you can try is to put the same widget on a separate page and see if it triggers any error, if this is the case then it could be related to your local xampp configuration (more often the cause than we think), or other local variants.
What is the widget causing the issue? Is it available for download anywhere so I can try it myself?
I strongly suggest you put your site online so I can help you locate the cause of the problem. I’m really looking forward to being able to help, as is I just cannot guess what is wrong!
If you want to try investigating yourself then the first thing to do is to set WP_DEBUG to
true, then look at the source code of the generated HTML page and look for any PHP warnings or notices.I hope that helps, alternatively if you can provide me with the widget causing the issue, or better put your site online where I could see it then I would be much more able to assist you with this! I look forward to your reply, keep me posted! Best
Jonathan
You are right, not all widgets have problems. Only widgets “Recent posts”. “Advanced Recent Posts”, “Custom Recent posts”, “TW recent posts” cause an error, now I tried widget “Google Map Widget” and all is good.
Hello Disclaips,
Thanks for the additional details. I believe those plugins potentially interfere with The Loop, meaning that their own query to retrieve “Recent posts” breaks the original query (The Loop) that retrieve all landing-page sections.
Obviously this issue is not an issue on single posts (pages displaying a single post) because in this case The Loop has only one item so it doesn’t cause any specific problem, however when executed on a page listing multiple posts like the Blog page or in this case the Landing-Page then it prevents any remaining posts to be processed/displayed.
I’ve made some research and I found the exact origin of the issue, as well as a way to fix it! So first the problem is that most of these widgets are calling the wp_reset_query() function once they’re done, and this is what removes the remaining posts from The Loop. The solution is to not call this function, and instead call the wp_reset_postdata() function which restores the integrity of the
$postglobal which is required for The Loop processing.Sorry for all the technical jargon, but at least there’s an explanation to the behavior you have been encountering. Now you can either manually edit the widget’s source code and look for the
wp_reset_query()function and replace it withwp_reset_postdata()instead, or you can use the[latest_posts]shortcode available in Spark and which will be fixed as well in the coming update of the theme to be released by MondaySorry for any inconvenience and please feel free to let me know if there’s anything else you’d like to share with me, I’d love to hear from you
Best,
Jonathan
Thank you very much!
Hi, thank you for the great job.
My logo appears to big and pixelated, the image size is 100×30, what could be wrong?
Thank you.
Hello andresleonardo,
Thanks for your message. Make sure that your logo image is at least 80 pixel height, that’s the only requirement, it can be of any width.
I hope that helps
Please feel free to let me know if you have any further questions, I’ll be happy to assist you.
Best,
Jonathan
Hello, i changed the size and get done.
I would like to know how to change the font color to white in some sections of the web page, because i have blue color in some sections.
Thanks.
Hi andresleonardo,
Thanks for your comment, you can set font color using custom CSS, and you could target any specific section on the landing-page using the available classes, here is an example to set white font color for text within the “Features” section:
.section-features { color: white; }This code is intended to be added to the “Custom CSS” tab in the Theme Option page.
Please feel free to let me know if you require further help with this
Best,
Jonathan
Hi Jona thank you for your great help.
I had been trying to make what you told me, but it only changes some part of the text.
The thing i need is very simple, I need to change the font color in the welcome text (main slider), section features, and contact section, because i have blue background on those sections.
Besides this i need to change the font size of the regular text, make it more bigger or maybe more pixels. I´ve tried making the text <h> to see it bigger but does not change the font color too.
My clients site is on goo.gl/JVqfe if you can take a look you will see clearly the changes that i am looking for.
I´m not very skilled with programming or css but i would do my best to get it work.
Thank you again for the great work and help.
Hello andresleonardo,
Thanks for your message. Ok now I see more clearly, the areas you’re talking about are the “contrasted” areas for which you have customized the background color to be a light blue. The reason the text is black on those areas is because Spark has automatically calculated the brightness of the blue chosen and decided to put black text on those areas rather than white, as apparently it offers the higher contrast with the chosen background color. Now this is a subjective estimation and it is entirely up to you to override this and choose your own color, so here’s how to force white text everywhere in contrasted sections:
.contrasted, .contrasted h1, .contrasted h2, .contrasted h3, .contrasted h4, .contrasted h5, .contrasted h6, .contrasted span, .contrasted .font-icon { color: white !important; text-shadow: none; }Add the above to the “Custom CSS” tab in the Theme Options page.
In regard to your second question about font size, this is the same process, add a rule to set the global font size like this:
body { font-size: 13px; line-height: 18px; }and for titles:h1 { font-size: 35px; line-height: 40px; margin-bottom: 10px; } h2 { font-size: 28px; line-height: 34px; margin-bottom: 8px; } h3 { font-size: 21px; line-height: 30px; margin-bottom: 4px; } h4 { font-size: 17px; line-height: 24px; } h5 { font-size: 14px; line-height: 21px; } h6 { font-size: 13px; line-height: 19px; }Add those to the “Custom CSS” tab in the Theme Options page.
However be careful when modifying those values as it might not display properly in all cases, for example check that the top menu is displaying properly for tablet and mobile views as well.
I hope that helps, and please feel free to let me know if you need further assistance
Best,
Jonathan
Hi Jona,
I would like to know how can I add a captcha form, for the form contact?
Because, Im fed up with the spam!!!
thank you!
Hello evocenter,
Thank you for your message. Which version of Spark are you using? There is a new version (Spark 3.0) which now features a Spam Protection, perhaps you could give it a try! You could also use the third-party plugin “Contact Form 7” which offer the possibility to add a CAPTCHA verification.
I hope that helps, please feel free to let me know if there’s anything I can assist you with
Best,
Jonathan
Nice theme! Loving it!
Just a quick one my contact form wont send i just get “Message not sent, please try again later.”
I have specified my email address in the admin section. (Contact form section in Theme option).
Any ideas….site is thinkcio.com
Thanks
Hello thinkcio,
Thank you for your message. This error means that the PHP
Make sure that your own email address has no typo, because sometime it can prevent the email to be sent.
mail()function returnedfalse, and therefore did not send the emailIf it still doesn’t work then I would suggest to get in touch with your Web Hosting provider and ask them why the PHP
mail()function is not working properly. I’ve seen rare hosts prohibiting sending emails, or allowing it only through their proprietary API, in both case the best thing to do is to solve the issue with them directly! Sorry if I cannot be of any further help but I’m sure you’ll be able to sort things out with the Web Hosting provider.Please do keep me posted as I’m interested of the outcome, and please feel free to let me know if there anything else I can assist you with, I’ll be happy to help
Best,
Jonathan
Thanks for the great after sales support. Truly awesome!
OK, so i spoke to my hosting provider….me. Apparently it helps to have the mail server configured. “sudo apt-get install mailutils” fixed it.
It sends now.
Thanks again. Daniel
Great! Thanks for your reply, I’m glad it’s working now
Best,
Jon
hi can you add drop down menus to the home page that take you to inner pages not on the ‘one page’ homepage? Thanks Paul
Hello Paul,
Thanks for your message. Yes absolutely you can customize the top menu like you want using the standard WordPress Menu Builder, and you can indeed add links to other pages. The theme supports multilevel nested menus (dropdown) as well. For instruction see this video tutorial: https://www.youtube.com/watch?v=o7SFpyzYlZw
You can see the dropdown menu in action at 4:55
I hope that answer your question, please feel free to let me know if there is anything else I can assist you with! Best, Jonathan
He again!
Can you tell please how attach footer to the bottom of page?
With little content it looks like this:
http://dl.getdropbox.com/u/3788970/0120.png
Hello Disclaips,
Thanks for reporting this use case, I’ll look into it for a lightweight, viable and cross-browser solution. A quick search returned this CSS technique which looks interesting, I’ll see if it can be implemented with the current layout. Keep posted for further updates of the theme and thanks again for helping improving the Spark theme even more
Best,
Jonathan
Hey. Great theme! One quick question: Whats the best way to increase the main font size in the top menu, so it keeps degrading well on tablets and smartphones?
I only have 4 menu items so i wanted them to be bigger in desktop mode.
Hello
Thank you for your message. To achieve what you want, simply add the following code to the “Custom CSS” tab in the Theme Options page:
@media only screen and (min-width: 959px) { .spark-main-menu { font-size: 14px; } .spark-main-menu a span { font-size: 13px; } }The first line is to target only screens wider than 959px of width. If you would like to target tablets as well, change that value to 768px.
Customize the two font sizes to adapt the menu titles and subtitles respectively
I hope that helps! Please feel free to let me know if you need any further help, I’ll be happy to assist. Best, Jonathan
PS: the “
.spark-main-menu” class is only available since Spark 3.0, if you use a previous version (Spark v2.0 or below) then you might need to replace “.spark-main-menu” with “header nav ul” instead.Hi Jonathan,
I found your response on how to embed videos in the slider (http://themeforest.net/item/spark-responsive-onepage-html5-wordpress-theme/discussion/2372522?page=10#comment_2513448). I followed it and put a video in the slider, but the problem I have is when I play the video, the slider doesn’t pause. So about 5-10 seconds in, the video disappears. You can see what I mean here:
tessbodley.com/checkedup/
How do I get the slider to pause when the video is playing? Thank you.
Hello PunkaTess,
Thank you for your message, sorry for the delay! I have just released an update of the Spark theme to add a slider option to turn off automatic sliding: I believe this is the solution to your issue!
The update is now being processed by Envato, please check back in a few hours.
I hope that solves your issue, please feel free to let me know if there’s anything else I can do for you
Best,
Jonathan
I will try that, thank you. I’m having a bigger issue at the moment though. If you look at the site in a browser, and you reduce the browser size, there is a strange gap on the right hand side that it’s creating. I can’t figure out what’s causing this to happen. You can see that it will create a scroll bar, and if you scroll to the right, there is an area filled with gray. Do you know why this is happening? Thank you.
http://tessbodley.com/checkedupHello Tess,
Thank you for your comment. I had a quick look at your site and the problem comes from a few elements: first the “SlideshowPlugin” you’re using seem to break the responsiveness, whenever I removed it the horizontal scroll disappear. There are other elements causing the issue, for example the multiple
<hr width="720" />tags, simply remove thewidthattribute and that should fix the issue you encounter. If you need to resize those HR tags you could do so using CSS in a dynamic way, for example:hr { max-width: 70%; }Also I see that a few images are not being aligned correctly with the grid, to fix this just add the following CSS code to the “Custom CSS” tab in the Theme Options page:
img { max-width: 100%; }I hope that helps, please feel free to let me know if you need more help with this issue, I’ll be happy to assist
Best,
Jonathan
Hi Jonathan, thank you for the reply. Ok, I figured out the responsive problems, but it leads me to another question. So I have some elements that I cannot seem to get to line up unless I declare a size. For instance at the top of the page I have “Welcome..” which I need left justified, then I have an input field and a button that are the same length, and underneath I have text that needs to be right justified and be even with the right end of the button and input field. I can’t seem to get them to line up without adding a width to the column, and then putting a style left:75px or so on them. Is there some other want to align them this way without destroying the responsiveness? Also, is there a shortcode to make images 50% smaller on the mobile site? I also need to horizontally align an image. Is there a shortcode for this so I can keep it responsive?
Thank you.
Jonathan, I’ve updated the theme, but the video issue is still not resolved. When you play the video, the slideshow does not pause. It keeps sliding.
Hello PunkaTess, Thanks for your comments, for the slider you need to deactivate the auto-slide: go to the Theme Options page and under the “Main Slider” tab set the option Auto Slide to OFF. The slides will have to be controlled manually but at least when viewing the video users won’t get disturbed! That’s the simplest solution I can suggest.
Regarding your other questions, you can align images horizontally like you would align text, you simply need to specify “text-align: center;” for the parent element of your image. Here is an example:p { text-align: center; }This will make text and images insidetags to be centered horizontally. For your last question, images should already be aligned with their container and therefore adapt smoothly to the mobile view, but if this is not the case then I guess there’s something weird going on either on their container either with one of the CSS rules… So here is the code that will resize all images to 50% width (of their container) like you asked:
@media only screen and (max-width: 767px) { img { max-width: 50%; } }I really hope that helps solve your issues! Sincerely, JonathanHi Jonathan,
I need to have a slider that plays automatically, and will pause during play. I have another I’ve used before, it’s called TN3 Gallery, but when I install it on the site, it doesn’t work on the home page. It will work on any other page, but not the home, which is the only place I need it. Do you know why this plugin will not work with the theme?
Right, I know how to align them horizontally, I’m talking about vertically though. I’ve tried ever attribute I can find, but can’t get that type of responsive placement of images vertically. I have very predefined areas of text on certain background.
Here is the link to TN3: http://www.tn3gallery.com/ I uninstalled it because I have to continue working on other elements. Since it’s a third party plugin, that probably means you won’t be able to resolve the issue. I know it’s impossible to support someone else’s product. That’s why I was trying to stick with the slider that comes with the template. Thanks.
Hey Jon!
It’s your favorite pain in the ass again! 


Went to update to 3.1 and received this in my error log after the update:
[04-May-2013 20:06:23 UTC] PHP Warning: in_array() expects parameter 2 to be array, null given in /home/bsb/public_html/site/wp-content/themes/spark-3.1/core/template-helpers.php on line 218 [04-May-2013 20:06:23 UTC] PHP Warning: in_array() expects parameter 2 to be array, null given in /home/bsb/public_html/site/wp-content/themes/spark-3.1/core/template-helpers.php on line 229 [04-May-2013 20:06:23 UTC] PHP Warning: in_array() expects parameter 2 to be array, null given in /home/bsb/public_html/site/wp-content/themes/spark-3.1/core/template-helpers.php on line 236 [04-May-2013 20:06:23 UTC] PHP Warning: in_array() expects parameter 2 to be array, null given in /home/bsb/public_html/site/wp-content/themes/spark-3.1/core/template-helpers.php on line 218 [04-May-2013 20:06:23 UTC] PHP Warning: in_array() expects parameter 2 to be array, null given in /home/bsb/public_html/site/wp-content/themes/spark-3.1/core/template-helpers.php on line 229 [04-May-2013 20:06:23 UTC] PHP Warning: in_array() expects parameter 2 to be array, null given in /home/bsb/public_html/site/wp-content/themes/spark-3.1/core/template-helpers.php on line 236 [04-May-2013 20:07:15 UTC] PHP Warning: in_array() expects parameter 2 to be array, null given in /home/bsb/public_html/site/wp-content/themes/spark-3.1/core/template-helpers.php on line 218 [04-May-2013 20:07:15 UTC] PHP Warning: in_array() expects parameter 2 to be array, null given in /home/bsb/public_html/site/wp-content/themes/spark-3.1/core/template-helpers.php on line 229 [04-May-2013 20:07:15 UTC] PHP Warning: in_array() expects parameter 2 to be array, null given in /home/bsb/public_html/site/wp-content/themes/spark-3.1/core/template-helpers.php on line 236 [04-May-2013 20:07:16 UTC] PHP Warning: in_array() expects parameter 2 to be array, null given in /home/bsb/public_html/site/wp-content/themes/spark-3.1/core/template-helpers.php on line 218 [04-May-2013 20:07:16 UTC] PHP Warning: in_array() expects parameter 2 to be array, null given in /home/bsb/public_html/site/wp-content/themes/spark-3.1/core/template-helpers.php on line 229 [04-May-2013 20:07:16 UTC] PHP Warning: in_array() expects parameter 2 to be array, null given in /home/bsb/public_html/site/wp-content/themes/spark-3.1/core/template-helpers.php on line 236 [04-May-2013 20:08:09 UTC] PHP Warning: in_array() expects parameter 2 to be array, null given in /home/bsb/public_html/site/wp-content/themes/spark-3.1/core/template-helpers.php on line 218 [04-May-2013 20:08:09 UTC] PHP Warning: in_array() expects parameter 2 to be array, null given in /home/bsb/public_html/site/wp-content/themes/spark-3.1/core/template-helpers.php on line 229 [04-May-2013 20:08:09 UTC] PHP Warning: in_array() expects parameter 2 to be array, null given in /home/bsb/public_html/site/wp-content/themes/spark-3.1/core/template-helpers.php on line 236 [04-May-2013 20:08:10 UTC] PHP Warning: in_array() expects parameter 2 to be array, null given in /home/bsb/public_html/site/wp-content/themes/spark-3.1/core/template-helpers.php on line 218 [04-May-2013 20:08:10 UTC] PHP Warning: in_array() expects parameter 2 to be array, null given in /home/bsb/public_html/site/wp-content/themes/spark-3.1/core/template-helpers.php on line 229 [04-May-2013 20:08:10 UTC] PHP Warning: in_array() expects parameter 2 to be array, null given in /home/bsb/public_html/site/wp-content/themes/spark-3.1/core/template-helpers.php on line 236Any idea what this means?Hey there kelleychambers,
Thanks for your message, I am aware of this issue and I have submitted another update one hour after 3.1 was released to fix this but it wasn’t processed by Envato yet, I believe it’s because of the weekend! Hopefully it should be available for download by tomorrow morning!
In the meantime: simply select any of the “Fonts Options” in the Typography tab, for example select “Remove Text-Shadow from Titles” and the error will disappear.
I hope that helps and sorry for the inconvenience!!!
Best,
Jon
I’ve just learned it’s not possible to have a “Placeholder” in the menu so that when one hovers over the element, drop down elements are offered. I used a standard ”#” mark without the link indicating the link should go nowhere. Why am I getting this nasty gram:
Navigation Broken: The menu link "<br />" points to a nonexistent ID "". To fix this, change the link's target to a correct ID of one of the displayed sections (see "Theme Option" > "Landing-page Sections")My menus have always started with a call-to-action (a verb) which is multi purpose: 1) to encourage the user to do something 2) organizes pages/sections without having a huge menu even if one has many pieces to their site 3) ensures room for site growth. So, how can I make this happen with your framework?
One last thing… the error message pops up four times… when I’m pretty sure just once at MAX twice, would suffice.
Hello kelleychambers,
Thank you for sharing this use case, I’ll add the possibility for “placeholder” links in the top menu in the next version. In the meantime you can make your menu item point to ”/” and make it non-clickable via javascript, here’s how:
First, add the class “
placeholder-item” to your parent menu item:Then, add the following CSS code into the “Custom CSS” tab in the Theme Options page:
.placeholder-item a { cursor: default; }That will set the cursor to indicate this menu item is non-clickable.
Finally, add the following javascript code into the “Custom JS” tab in the Theme Options page:
(function ($) { $(document).ready(function () { $('.placeholder-item a').click(function(event) { event.preventDefault(); }); }); })(jQuery);That’s it, you should have your “nested menu placeholder” as desired! I’ll add this possibility natively in the next version
Thanks for your thoughts and please feel free to let me know if you need any further help with the instructions above!
Best,
Jon
Have I told you lately how much you rock, Jon? If not,
YOU FLIPPIN’ ROCK THE CASBAH!!!, Jon!!!
There. I’ve said it. Now the whole world knows.Haha thanks! I’m glad I was able to help
I’m glad I was able to make you smile!
It’s the least I can do for all the help you’ve given to me. Cheers my friend! 
Oops I’ve just figured out that it also disable the nested links, can’t edit my previous answer so here’s the final working code:
Custom CSS:
.placeholder-item > a { cursor: default; }Custom JS
(function ($) { $(document).ready(function () { $('.placeholder-item > a').click(function(event) { event.preventDefault(); }); }); })(jQuery);Let me know if any problem! Best
Jon
This does work with one exception. The hover element doesn’t work with sub items in the navigation.
For example, when I hover over “Contact”, the border above turns from red to light grey as there’s no drop down sub-menu. However, when hovering the mouse over “Read”, the hover menu DOES appear but the expected hover action doesn’t respond; it stays red and never changes to light grey. Are you following me? If not, you wouldn’t be the first, trust me! 
Here’s a screenshot to illustrate what I mean: http://i.imgur.com/85t2Ykh.png
Hey kelleychambers,
Thanks for your message. Hmmm I’m not sure if I understand exactly, but perhaps it is something related to the CSS effect when menu items are “active” (i.e. clicked)?
It would be great if I could see it by myself so I can investigate and see which CSS rule is predominant and that causes this, so if you can send me a link I’ll take a look for you
I tried to go to the address in the screenshot however as I’m not logged-in I see the temporary page.
Let me know! I look forward to your reply. Best, Jon
Yeah, I kinda figured it would difficult to explain but it does seem as though you have a grasp as to what I’m trying to verbalize. Jon, send me an email address to kelley AT runswithpixels DOT com and I’ll create an account for you which as you know, will send you login credentials. I have a “maintenance page” up now so obviously, that’s not what I’m working with.
I just sent you an email
Best,
Jonathan
I just replied!
As usual, you’re a rock star!
Thank you so much!
Update: the menu as I have it works on all pages BUT the landing.
Yes #internal links are being processed only on the landing-page, but now it should work everywhere

I am getting the following error when trying to import new icons:
Error: Missing SVG font format for the Icons. Please upload a ZIP file that contains font files in SVG, Woff, EOT and TTF formats (under the Icons tab) – such ZIP can be downloaded from http://icomoon.io/app/#browse.Even though I am using the ico moon zip file, I also unpacked the ico moon zip file and just zipped the fonts folder within it and tried to upload it but it didn’t work either.
Hello cagerattle,
Thanks for your comment. You must upload in the Theme Options page, the ZIP file (untouched) that you downloaded from IcoMoon, there’s no need to unzip it or anything, just upload as is.
If you still get the error then perhaps there is something wrong during the extraction on the server side, if you want me to take a look please send me credentials to your admin panel (with FTP logins as well would be great so I can eventually debug what’s wrong on your install), just send them to me via my profile page: http://themeforest.net/user/JoNa
I look forward to your reply
Best,
Jonathan
Well, hello again, Jon!
I sure would like to be greeting you with a lovely, cold & frothy beer rather than posing yet ANOTHER support question.
I’m so sorry, Jon!!!
So, let me get to it quickly so you’ll have less time to be annoyed with me.
I’ve downloaded your latest update and installed it on my replacement domain with a fresh install of WP. The only issue thus far is the “full slider”... I’ve designed my slides, per the instruction, 1880×560… and yet they’re still being scaled down… here’s the URL so you can see what I’m talking about… site.rwpstudios.com.
Thank you sweetie!!!
Hello Kelley,
Thanks for your message and sorry that I totally forgot to get back to your last request! Do you still need help with the top menu?
Regarding your images being scaled down, it is caused by this CSS rule that I’ve found in the “style.css” file of your custom child theme (line 66):
img, img.scale-with-grid { max-width: 75% !important; height: auto; }Remove this rule, or target more specifically which images you want scaled down in order to avoid affecting the slider’s images too!
I hope that helps! Please don’t hesitate to let me know if you need any further assistance with anything else, I’ll be happy to help! Sincerely
Jonathan
AWESOME! Ok, so I defined the rule and you’re right… it works! WOOT!
However, I’m noticing one weirdo thing that happened just as I further targeted the rule… my logo in the top left now appears blurry in Safari but fine in Chrome. When I refresh and even delete all my browser data in Safari, it for a split second looks perfect and then turns blurry… looks like a javascript is affecting the resolution. It might be helpful to know I’m on a 2010 MBP with NO retina as I know this is a hybrid retina theme.
Yes please, I do still need help with the top menu (nav).
1) I have it set when a hover is executed, the menu it and the border above it change to a medium steel blue. However, when a user clicks to go to that section or page, the a:active rule (which keeps it at that hovered state) is ignored. Same thing with a dropdown menu… the parent menu item doesn’t stay in hover state. How can I fix that?
2) How do I change either the spacing of the caret that indicates a drop down menu and/or change the actual caret image/character?
Thanks again, Jon… Cannot thank you enjoy for answering my questions. I look forward to more items from you on TF!!! I’m sure you’ll be getting quite a bit of my money!
giggle... have yet another question… are you sick of me yet?
Just send me a Paypal email and I’ll send some good ole’ American greenbacks to ya’ to help defray the time you’ve taken to provide seriously wonderful support for my site. 
So, I’ve decided to remove the defacto logo with
header h1.logo { display: none !important; })so that I could make enlarge the nav typeface and so I could display my logo more prominently elsewhere. I want to put said logo above the landing page slider but I’m not sure where it’s kept. Mind helping out a cute, blonde girl out?Jon, have you had a chance at all to look at these pieces? I’m two days from scheduled launch and am no where closer then I was three days ago.
“Help me, Obi-wan, help me! ;)”
Jon, I figured out two piece of my question: 1) the placing my logo above the slider piece. I put the logo inside the “intro” page (can’t remember what you originally named it) and it works just great. 2) the drop down caret by adding a css declaration of
nav > ul > li.spark-has-submenu::after {left: 0% !important; margin-left: -13px !important; color: #ae1056;}However, I can’t figure out how to change the color or the shape of the caret nor have I found a solution for a:active menu issue noted in “1)” from four days ago.
If you could help me with that, I would be eternally grateful. 
Hello Kelley,
Thanks for your messages and sorry for my late reply! I’m glad you were able to figure out those issues.
For the little arrow indicating the presence of a submenu, here is how to change its color and size:
nav > ul > li.spark-has-submenu:after { border-top-color: red; border-width: 10px; }This is an arrow built entirely with CSS, there is no image or SVG involved so it’s not possible to change its shape easily, only its size and color as showed above. However if you require more customization you could eventually remove it and use an image instead
Regarding the active menu item, it’s because the correct class to target is ”.current-menu-item” and not ”.active”. Here’s how to fix it in your situation, edit the rule on line 37 in the
Before:style.cssCSS file of your Child Theme:nav a.active, nav a:focus, nav a:hover {border-top: 5px solid #3266a6 !important; color: #3266a6 !important;}After:nav .current-menu-item a, nav a.active, nav a:focus, nav a:hover { border-top: 5px solid #3266a6 !important; color: #3266a6 !important; }That should fix it, however I’ve noticed that on your site all menu items had the ”.current-menu-item” class so all the links will have the active state, you need to fix that issue for the above CSS to work.
I hope that helps and please don’t hesitate to let me know if you require further assistance with this matter, I’ll be happy to help! Best
Jonathan
Is it possible to add a fullscreen (background) image to a page? Something like the Simplekey theme: http://themeforest.net/item/simplekey-one-page-portfolio-wordpress-theme/3729774
Hello cselmer,
Thanks for your question. Yes it’s absolutely possible to define a custom background image and make it fullscreen. Simply go to the “Background” tab in Theme Options page and select Custom, you will then be able to upload an image.
If you would like your image to fill the entire body area, add the following code to the “Custom CSS” tab in the Theme Options page:
body { -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; }If you prefer you could also set a different background image for each section individually, here’s how:
/* Set background size for all sections */ .landing-page-section { -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; } /* Define custom background images for each section */ .section-home { background: url('http://image.photography5.com/78381809/Landscape/Nature/Green-Plants-Birth-002.jpg'); } .section-features { background: url('http://image.photography5.com/78381809/Landscape/Nature/Green-Plants-Birth-002.jpg'); } .section-prices { background: url('http://image.photography5.com/78381809/Landscape/Nature/Green-Plants-Birth-002.jpg'); } .section-contact { background: url('http://image.photography5.com/78381809/Landscape/Nature/Green-Plants-Birth-002.jpg'); }Add the above code to the “Custom CSS” tab in the Theme Options page, and replace the URLs with the URL to your custom images.
I hope that helps! Please don’t hesitate to let me know if you need any further assistance with this, I’ll be more than happy to help! Best, Jonathan
Hi Interest is to use this theme with a multi-language plugin. Are you aware of any limitations?
Hello fts,
Thanks for your comment. The theme itself is fully translatable using the po/mo files provided. Regarding using a plugin to offer multiple languages at the same time, I know people using them successfully (look at previous comment pages), but I don’t personally have experience with it.
The Spark Theme is based on “OptionTree” which is known to be compatible with WPML, so I believe that it should work flawlessly. In case you need any assistance with the translation/customization please don’t hesitate to contact me, I’ll be happy to help
Best,
Jonathan