TemplateToaster
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Email fails only when I use a particular email.I have also encountered this issue once while using an external SMTP email service provider. In my case my email SMTP service provider will never deliver email again to a bounced ID.
For example: I do not have [email protected] and try to send it an email, it will bounce back, now I create that email ID but my provider will never deliver again to that bounced ID.
A misconfigured DNS or a blacklisted domain/IP can also be the cause. A wrong from address can be the issue.
You must be getting a bounce back report, just read it and you will get to know the exact cause of issue.
- This reply was modified 6 years, 7 months ago by TemplateToaster.
Forum: Themes and Templates
In reply to: Removing sidebar at some pagesThe sidebar should not display if you removed it correctly from your page.php, can you post your website URL here.
Forum: Themes and Templates
In reply to: How do I add extra footer space in wordpress 2010 theme?You can add padding to following style in the theme stylesheet:
#footer-widget-area .widget-area { float: left; margin-right: 20px; padding: 10px; /* I added this */ width: 220px; }
Subscribe textbox is displaying “Email Address” while blank, do you want to remove that
Forum: Themes and Templates
In reply to: removing white spaceLook like the margin added to <p> tag is causing the issue:
p { margin-bottom: 1.625em; }
You can try removing or decreasing it from style sheet of theme.
Forum: Themes and Templates
In reply to: Center MenuCurrently menu is aligned on right side on your site, you need to change float:right to left and add margin-left to align it on center in following style:
#hmenu { border: 0 none; bottom: 24px; float: right; height: 0; margin-bottom: -23px; padding: 0; position: relative; right: 2px; width: auto; } change float to left and add margin:
#hmenu {
border: 0 none;
bottom: 24px;
float: right;
height: 0;
margin-bottom: -23px;
margin-left: 32%;
padding: 0;
position: relative;
right: 2px;
width: auto;
}Forum: Themes and Templates
In reply to: Blueline.zip templateMost probably the theme is not compatible with the WordPress version you are using, I’ll suggest you to contact author of the theme for this information.
Forum: Themes and Templates
In reply to: Getting Theme Upload Failure MessageTry uploading the theme using an FTP to wp-content/themes directory and that activating.
Forum: Themes and Templates
In reply to: How do I remove blog title in header in Travel Theme?You can try adding display:none in the class associated with blog title, I’ll suggest you to use Firebug for inspecting the title.
Forum: Themes and Templates
In reply to: cant see the theme in dashboardMake sure you uploaded your them correctly from: Appearance/Theme/Install-theme/Upload, there you can click upload after browsing the theme.
You can also upload your theme to themes directory under wp-content using an FTP.
Forum: Themes and Templates
In reply to: White Space under navigationTry adding margin-bottom:-12px to following css style in your stylesheet:
#site-title {
margin-right: 270px;
padding: 3.65625em 0 0;
}It’ll be:
#site-title {
margin-bottom: -12px;
margin-right: 270px;
padding: 3.65625em 0 0;
}Forum: Themes and Templates
In reply to: Failed to connect to ftp serverAre you trying to upload theme using FTP or from WordPress admin ?
Forum: Fixing WordPress
In reply to: Text under menu barI don’t see any text under menu bar on your site, which browser you are using ?
Forum: Themes and Templates
In reply to: Removing Title and Comments box from pagesYou can remove it by commenting following code from single.php and page.php: <?php the_title(); ?>
You can visit following documentation page for more details: https://codex.www.ads-software.com/Function_Reference/wp_title
——
There is a checkbox to remove comments on bottom of every page, you should click screen options(on top rigth) and tick discussion if you don’t see the checkbox to remove comments.