Mohammad Taqui Sayed
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Supernova] Updated WP, but v border nav will not workOkay I see, you have copied everything from style.css to your child-theme’s css file and therefore css is looking for the images in the child theme.
Please import style like this
@import url("../supernova/style.css");
instead of copying the whole thing.Read more about it here http://codex.wordpress.org/Child_Themes
Forum: Themes and Templates
In reply to: [Supernova] Updated WP, but v border nav will not workBut I still see that the plugins are active. Can you deativate the plugins for 5 minutes so I can have a look. Also please clear cache of autoptimize plugin.
Forum: Themes and Templates
In reply to: [Supernova] Updated WP, but v border nav will not workNot only v border none of the theme images would show because its getting the incorrect path http://www.hepisontheway.com/wp-content/themes/supernova-child/images/line.png
Please disable all your plugins one by one and see if that helps.
My guess is that autoptimize plugin could be an issue.Forum: Themes and Templates
In reply to: [Supernova] Updated WP, but v border nav will not workCan I have link to your site please?
Forum: Themes and Templates
In reply to: [Supernova] How to Center the Navigation CategoriesIf you want to center the main navigation , you would need to disable the search input box because that is aligned to the right. So do this.
Go to Apperanance > Supernova Options > Styling > Write Custom CSS
and paste this css in it.#nav_search{display:none;} /*If you want to remove the nav search*/ #nav{display:inline-block; float: none; max-width:100%;} #nav_wrapper{text-align:center;}Forum: Themes and Templates
In reply to: [Supernova] How to Center the Navigation CategoriesMore detail requried. Which navigation?
Forum: Themes and Templates
In reply to: Supernova – Name, email, site, hidden for Comments, Please Help!when visitors are trying to leave comments, they are not seeing the fields to fill ou their name, email, website, etc. The only way for the fields to appear seems to be when you click within the comment box.
I did that purposely because it looks more clean. However if you dont want it, the above css should work as I can see.
If someone is leaving a comment and leaves this blank, it is not only giving them an error message, but also deleting the entire comment. It is causing my visitors to leave without leaving a comment.
I agree with you here, wordpress does it by default unless we use some javascript to prevent this. I’ll fix it in the next version which is coming very soon. Meanwhile use this script.
(function($){ $(document).ready(function() { $('#commentform').find('#submit').on('click', function(e){ if( $('input#author').val() === '' || $('input#email').val() === '' ){ $('input#author, input#email').css('border', '1px solid red'); alert('Please Enter Your Name and Your Email.'); e.preventDefault(); return; } }); }); })(jQuery);Paste this under Supernova Options > Advanced > Header Script
Forum: Themes and Templates
In reply to: [Supernova] Responsiveness at 1024 resolutionOkay , thanks I’ll fix it in the next version.
Forum: Themes and Templates
In reply to: [Supernova] Mobile Nav Menu – hiding submenusThanks and I m glad that you liked my work.
If you want to hide the submenus in the small screen , this css could be a help.
@media only Screen and (max-width:920px){ #wrapper #nav li ul.sub-menu, #top_nav li ul{display:none!important;} #wrapper #nav li:hover ul.sub-menu, #top_nav li:hover ul{display:block!important;} }Forum: Themes and Templates
In reply to: [Supernova] Ad manageDo it from lib/functions/supernova-hooks.php and find ‘supernova_display_ad’ function in lib/functions/custom-functions.php file.
Forum: Themes and Templates
In reply to: [Supernova] how to turn off slider from post pagesSlider shows only on home page by default, it doesn’t show on the blog page. A little more information would be helpful.
Forum: Themes and Templates
In reply to: [Supernova] Fonts sizes and alignmentThe theme doesn’t have any option to do any of these by default.
Go to Appearance > Supernova Options > Advanced > POPULAR/RECOMMENDED, and turn off popular posts and recommended posts
Forum: Themes and Templates
In reply to: [Supernova] Need to customize a littleits up now.
Forum: Themes and Templates
In reply to: [Supernova] Need to customize a little