Mahesh
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress Admin Dashboard redirect to 404 ErrorAny idea what seems to be the problem with redirection from WordPress?
Forum: Fixing WordPress
In reply to: robots meta tags on header.phpTheme or plugin options often do that too. So check if there is any SEO plugin or the Theme option set to that option.
Forum: Everything else WordPress
In reply to: Premium themesYou can look for marketplace like Creativemarket.com, themeforest.com and few other marketplace where you can sell themes. Document your experience, so that other users can find it useful ??
Forum: Themes and Templates
In reply to: How to remove "Powered By: WordPress" from footerOpen your footer.php file and remove the following code.
<div class="wrapper"> </div>
Forum: Fixing WordPress
In reply to: What is wordpress css Layout ???It is just description and used for categorizing on theme garden sites. For exampple, www.remarpro.com has wordpress themes categorized with layouts. Underscore theme gives you choice to decide the layout , you don’t have to go with the default. ??
Forum: Fixing WordPress
In reply to: AdSense problem after upgradeI just checked the site. It looks more like problem due to adblockplus because it does not seem to be problem of WordPress or theme.
Forum: Themes and Templates
In reply to: Ask about categories in wordpressYour image is not accessible. Can you upload this image to imgur or similar other image hosting site? Alternatively you can upload theme to your own server so that we can see what you want?
Forum: Themes and Templates
In reply to: How To Create A Responsive Theme From ScratchUnderscores theme is a good way to start your own theme. But if you want to make your existing theme responsive then you have to make changes to the stylesheet so that the elements responds as per the devide width.
Forum: Themes and Templates
In reply to: Twenty Twelve, Remove Page TitlesIf you use display:none, then there should be no whitespace problem as far as I can see.
Forum: Localhost Installs
In reply to: [Meteor Slides] problem with Meteor Slides when use bitnamiI don’t think this is related to the bitnami but the wordpress install itself. What error you;re getting on the page? That would be helpful to know. If you are not getting the error, please check if the theme and the slideshow are calling jquery more than once, if yes then that is the error you have got.
Forum: Localhost Installs
In reply to: Using WP locallyI use:
Bitnami Stack for Wampserver and WordPress.
You can also run the wordpress application for installation from Bitnami stack itself. Saves a lot of time. ??
Forum: Themes and Templates
In reply to: Wp-nav menu background imageSee if this snippeet works out. Add your own necessary URL path for the background image.
.nav_menu{ background:url() ; }
Forum: Themes and Templates
In reply to: what theme is this?It looks custom theme. Some of the closer themes can be seen in wordpress marketplace sites, if you are trying to find one.
Forum: Themes and Templates
In reply to: creating a child theme?You just have to upload the child theme regular way. Once you upload the child theme, it will be shown in the theme page and there you can activate there.
Forum: Themes and Templates
In reply to: Center all images in theme "forever"It is hard to give specific answer without your website or theme link.
However, see if this helps.
.entry img{ display: block; margin-left: auto; margin-right: auto; }