rob85ert
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress has taken over my site (I can't have non-wp pages)That seems to have done the trick!
Thank you very much. I really appreciate it.Forum: Fixing WordPress
In reply to: WordPress has taken over my site (I can't have non-wp pages)Thanks for the reply. You’re right that there’s two .htaccess files.
In the first one, in the root it contains:RewriteEngine On
RewriteCond %{HTTP_HOST} ^mutyakeishasiobhan.net$ [NC,OR]
RewriteCond %{HTTP_HOST} ^www.mutyakeishasiobhan.net$ [NC]
RewriteCond %{REQUEST_URI} !^/news/
RewriteRule ^(.*)$ /news/ [L]# 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 WordPress
Forum: Plugins
In reply to: Jetpack sharing images not displayingI’d like to add that it displays ok in the twentyeleven theme. Any ideas guys?
Forum: Themes and Templates
In reply to: Sidebar has 40px left margin I cannot changeI thought I was styling both, but I missed out the comma after the ul.
Thanks again for your help.
Forum: Themes and Templates
In reply to: Sidebar has 40px left margin I cannot changeThanks very much!
I tried your second suggestion and it worked… although I do not completely understand why as I thought I had already set the padding to 0 in this code:
#sidebar ul li {
width:100%;
color: #fff;
margin: 0px 0px 0px 0px;
list-style: none;
padding:0px 0px 0px 0px;
border-bottom: 1px dotted #fff;
text-align: left;
font-family: verdana, sans-serif;
font-size:11px;
line-height:15px;
background-color: #000;
}