Mohammad Taqui Sayed
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Supernova] Editing The Header Categories MenuFor changing the name, you need to redefine the function
supernova_category_navigationwhich is in/lib/functions/custom-functions.php. However if you change the name , you would also need to tweek your css a little bit.
The css you would like to adjust in this case would bepadding-leftvalue in.header_cat_title .first_catclass.Forum: Themes and Templates
In reply to: [Supernova] MultiTabsWidget I can not translate itYes that’s a problem , will fix it in the next version of the theme.
Forum: Themes and Templates
In reply to: [Supernova] What does the "Show More" Button Do?Okay fixed and uploaded the new version, it would be a couple of weeks for it to be available for update. However you can download it manually and update from here if you want.
https://wordpress.org/themes/download/supernova.1.6.3.zipForum: Themes and Templates
In reply to: [Supernova] What does the "Show More" Button Do?Yes I see, didn’t notice , thanks for reporting will fix it as quickly as possible and launch a new version with the fix.
Forum: Themes and Templates
In reply to: [Supernova] What does the "Show More" Button Do?Can I have link to your site please.
Forum: Themes and Templates
In reply to: [Supernova] Site scrolls past the footer suddenlyChecked your website with firefox, I wasn’t able to see the issue.
Forum: Themes and Templates
In reply to: [Supernova] What does the "Show More" Button Do?Show more buttons loads more posts without reloading the page through ajax. I think its not working probably your blog doesn’t have enough posts for it to work.
Forum: Themes and Templates
In reply to: [Supernova] Change Post Default Featured Image In Child ThemeJust paste it in Apperance > Supernova Options > Advance > Header Scripts
Forum: Themes and Templates
In reply to: [Supernova] Change Post Default Featured Image In Child ThemeHi,
Sorry there is no hook for changing the default.png image, but probably I’ll add that in the future version , so you can change the default image. But for now a little script can solve your issue I wrote for you.Just replace the new-default.png to any image you like.
(function($){ $(document).ready(function(){ var source, newSrc, defaultImage = 'default.png', newImage = 'new-default.png'; $('img[alt="Default Image"]').each(function(){ source = $(this).attr('src'); if( source.indexOf(defaultImage) >= 0 ){ newSrc = source.replace( defaultImage , newImage ); $(this).attr('src', newSrc); } }); }); })(jQuery);Forum: Themes and Templates
In reply to: [Supernova] Mobile Nav Menu – hiding submenusYou can paste it in Apperance > Supernova Options > Styling > Write Custom CSS
Forum: Themes and Templates
In reply to: [Supernova] How do you remove white text box?Thanks, this https://wordpress.org/support/view/theme-reviews/supernova should be right place for the feedback.
Forum: Themes and Templates
In reply to: [Supernova] How do you remove white text box?I dont see any bottom border now.
Forum: Themes and Templates
In reply to: [Supernova] How do you remove white text box?No Problem
.home section.main_content { padding: 0; border: none; min-height: 200px;} .home .entry{padding: 0;} .home .entry img{width: 100%;} .home .main_content .post{margin-bottom: 0} .home section.main_content{min-height: 300px;} .home .entry p{margin-bottom: 0}Forum: Themes and Templates
In reply to: [Supernova] How do you remove white text box?.home section.main_content { padding: 0; border: none;} .home .entry{padding: 0;} .home .entry img{width: 100%;}Forum: Themes and Templates
In reply to: [Supernova] How do you remove white text box?Did not know somebody would try so hard to remove it. (:
Paste this css under Appearance > Supernova Options > Styling > Write Custom CSS
.post img.attachment-thumbnail, .type-post img.attachment-thumbnail{ box-shadow: none; border: none; -webkit-box-shadow: none; margin: 0 20px 20px 1px; }