caledoniaman
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Submit For Review —- No Publish buttonHad this problem recently. I’m aware that there may be numerous causes for it and I’ve certainly seen numerous (successful) solutions.
Just in case anyone else want’s to try this, my issue was caused by the database user becoming ‘locked out’. To resolve this, I simply logged into my hosting control panel and created a new database user and password.
I then updated the wp-config.php file to reflect the new DB username and password which then solved the problem.
Forum: Fixing WordPress
In reply to: Variable in WP-QueryFixed. Your help is very much appreciated. Thank you.
Forum: Fixing WordPress
In reply to: Variable in WP-QueryThat doesn’t throw me a syntax error but it doesn’t bring back any posts either, despite their being posts in the range.
I’m echoing the value of $today so I know that it’s showing today’s date.
Forum: Themes and Templates
In reply to: Cannot remove standard indent from nav menuAnd this is how it renders the menu. The red outline is just to mark the containing div.
http://img402.imageshack.us/img402/9344/fireshotprocapture122ed.png
Really grateful for any help.
Forum: Themes and Templates
In reply to: Cannot remove standard indent from nav menuSorry, it’s a local build.
Here’s the HTML being generated by WordPress:-
<body>
<div id="wrapper">
<div id="serverdate">Saturday, 19 February 2011</div>
<div id="masthead"><div id="logo"><img src="http://localhost/editions/wp-content/themes/EditionsFinancial/images/edi_Logo.gif" /></div>
</div>
<div id="navigation"><div class="menu">- <li class="current_page_item">Home<li class="page_item page-item-2">About<li class="page_item page-item-4">Test
</div>
</div>
</div>
</body>And the CSS
#navigation li{
display: inline-block;
width: 143px;
height: 30px;
padding-left: 30px;
background-image:url(../images/bullet.png);
background-repeat: no-repeat;
margin-top: 9px;
margin-right: 20px;
margin-left: 0px;
border-top: 5px solid black;
zoom: 1;
*display:inline;
}
Thanks in advance.