Gary Eckstein
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Contact form 7] Remove border from popup after sent msgIf you want to change the border color use this CSS:
div.wpcf7-mail-sent-ok { border-color:white; }
To remove the border altogether:
div.wpcf7-mail-sent-ok { border-style:none; }
Does anyone have this Plugin working on Shared Hosting? I’ve tried on Hostgator, Godaddy and Crazydomains (Australia) and have the permissions problem on all these hosts.
Please leave a reply if you have this working on any shared hosting (Bluehost, iPage etc.). Thanks.Thanks @magi182. Your recommendation made the plugin work for me.
@fernandolopes please let me know if you manage to find a solution as I haven’t managed to get this resolved.
Thanks @workshopshed
Thanks @agelonwl – your recommendation worked perfectly:
table.em-calendar td{ width:100px;}
works great.Per @jeffqc I’d also be interested in attaining the shortcode
My experience with WP Smush.it has been very positive. I’ve used this Plugin on over 20 Websites and totally recommend using this Plugin. The image size savings are usually between 5% and 20% and there is no degradation of quality.
Forum: Plugins
In reply to: [Social] [Plugin: Social] Facebook connect error@rodolfo Sánchez
Thanks for the solution. It worked for me.
Hey Matthew, yes the new version works. Thank you!
Forum: Themes and Templates
In reply to: Help With Static PagesIn page_title.php replace all existing code with the following:
<?php if (is_page()) { } else { echo '<h2 class="art-postheader">'; echo '<a href="'; echo $post_link; echo '" rel="bookmark" title="'; echo $post_link_title; echo '">'; echo $post_title; echo '</a></h2>'; } ?>
There sure are some significant changes with Artisteer 2.5 where lots has changed since version 2.4.
Forum: Fixing WordPress
In reply to: home page url redirecting to a static pageThanks for this Duckie777 and Adeptris!!!!!! I had exactly the same problem in that I added a new Page and then amended the menu slightly. The Redirection Plugin got terribly confused by all this and disabling the Plugin resolved the issue.
Forum: Installing WordPress
In reply to: CSS stylesheet admin.css not working in firefox – weird outputWhat worked for me was creating a .htaccess file in the root and adding the below to the newly created .htaccess (the .htaccess script/instructions as below is used for canonical but seems to help with this CSS issue):
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule>
Forum: Fixing WordPress
In reply to: Function to change post category at given dateI would also be interested in getting this desired result.