Ganesh Paygude
Forum Replies Created
-
Forum: Themes and Templates
In reply to: White space above headerNo its not right in future if you have menu in header it will not show so its better to put above code in css.
Forum: Themes and Templates
In reply to: White space above headerJust put this code in your themes css file
#main-nav , .header {min-height:auto!important;}
Forum: Themes and Templates
In reply to: Theme SpacingIts not padding its margin applied to your quotes please add this in your style.css:
body blockquote {margin:0px;}
Forum: Themes and Templates
In reply to: [Flat] Flat theme button labels are not visibleJust add the below css code in your themes style.css:
#subscribe-submit {color: #000;}
Forum: Themes and Templates
In reply to: [Sela] Which php is default page template?Default page template for page file for any theme is page.php
Forum: Themes and Templates
In reply to: [MH Magazine lite] Enabling Link in Blog titleNot getting what do you actually mean can you please share link of site.
Forum: Themes and Templates
In reply to: [Customizr] How to highlight menu…Can you please this in your Jquery files this may help you.
$(‘.current-menu-parent’).parents(“ul.dropdown-menu”).parent(‘li’).addClass(“current-post-ancestor”);
Can you please give me the site link.
In Order to do that you need the find the Media query which is for below 768 in side this you get the menu css which is applying for mobile menu you just need to take this out and add it media query which is below 1024px.
Forum: Themes and Templates
In reply to: [evolve] images get streached and out of focusYou just need to remove below css from your CSS where you have added this.
img.img-responsive {
max-height: 600px !important;
min-height: 585px;
}You need the Menu to be get switched like mobile menu when its 945px right ?
Forum: Plugins
In reply to: [Awesome Photo Gallery] Remove "Archives" From Page Title?In order to remove the “Archives” form the Title you need to remove it From HTML which in archive.php file in your activated theme.
Forum: Themes and Templates
In reply to: Must be a CSS problem – Images not aligning with textYou can do this by removing the Empty P tag from html which is after the p tag in which image is wrap
OR add this in CSS file
p:empty {
display: none;
}Forum: Themes and Templates
In reply to: [evolve] How to change position of title "search results for"Please add the below code in your css file
.search .menu-container {margin-bottom: 80px;}
.search .search-title {
background-color: #cbe7ff;
padding: 20px;
}