ulysses69
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: 2.6 Blank WP_SITEURL & Virtual HostsFound this:
http://ww.wp.xz.cn/support/topic/136889?replies=13Appears that the recommened remove_action fixed the problem.
Forum: Fixing WordPress
In reply to: Making link underline go awayAll of your anchor tags have a dotted underline in the following file:
http://mockutv.com/blog/wp-content/themes/seashore/style.cssIn order to remove this effect from just your images, you either need to add an inline style to each anchor tag that contains an image, like so:
<img src=””>or add this to each anchor tag that wraps an image:
class=”img”and then add this to your style.css file:
a.img:link, a.img:visited {
text-decoration:none;
border:none;
}Forum: Fixing WordPress
In reply to: Blank Pages. Permalinks The Cause?Shame on me.
The .htaccess file needed this adding.<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]Forum: Fixing WordPress
In reply to: Customize User Role SettingsThanks Moshu.
Very handy plugin … seems you are right about this particular setting though. I wonder if their support is worth asking though …