realmattbender
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Permalink not working with first character as a number# BEGIN WordPress ErrorDocument 404 /index.php?error=404 RewriteEngine On RewriteBase / RewriteRule ^(.+)\.(html|php)$ $1/ [R=301,L] # END WordPress # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPressForum: Fixing WordPress
In reply to: Permalink not working with first character as a numberAlso, the same is true for pages, not only posts
Forum: Fixing WordPress
In reply to: Permalink not working with first character as a numberyup 404 already tried copying another working installs .htaccess with no luck either
Forum: Fixing WordPress
In reply to: Permalink not working with first character as a numberits working fine for me on my other installs as well permalink structure is set to %postname% It is not a theme or plugin issue, have tried deactivating all and switching to 2014 with no luck
Forum: Fixing WordPress
In reply to: Removing Borders on All Imagesit looks like the image class has a border attribute Try adding:
.aligncenter {border:0;}
to your Stylesheet. You may also have to add that to right and/or left aligned images as well.Forum: Fixing WordPress
In reply to: Trouble Editing Menu Font SizeTry adding the following CSS to your stylesheet:
.main-navigation a {font-size: 19px !important;}Forum: Fixing WordPress
In reply to: How to change the text color for an entire websitetry adding the following to your stylesheet:
h2, h3, h4, h5, h6, h7, .widget h3 {color: #FFFFFF;}Forum: Fixing WordPress
In reply to: Removing Featured Image From Blog Overviewdoes adding the following css work?
img.headimg {display:none;}