
Originally Posted by
Boss Hog
I think the easiest thing for Lou is to give someone access and just pay them to fix this issue. If you don't know what you are doing and messing around with back end code you may really mess things up.
Just a thought.
Yeah, that might actually be a good idea.
As a bit of advice, and for anyone else thinking about learning coding, try to be disciplined and comment absolutely everything to avoid hunting for that proverbial needle in the haystack.
For example, when you code your wrapper div (for centring content) don't just code;
Code:
<div id="wrapper"></div>
because that closing tag will end up at the other end of your page.
If you comment correctly you should have;
Code:
<div id="wrapper"></div><!-- /wrapper -->
That way, when it is at the end of your page you still know that </div> is closing your wrapper.
These don't display in the browser but can be a lifesaver when your page layout gets complicated and you wonder which offending div is not being closed.
Same goes for PHP and CSS.
I know this 'after the horse has bolted' but just thought I'd flag who this can help and, trust me, I learnt this the hard way as well!