Issues with website

Associate
Joined
13 Jan 2007
Posts
2,424
Location
Belfast,Northern Ireland
http://www.warfinder.co.uk/index.php

Happy enough with layout of main page unless someone sees something major? Admin section link will be hidden in final site, so it can only be accessed if the user knows what to search, is this wise/common? I thought it could act as an extra security feature.

Can anyone tell me what I should lookup in order to fix that message the studio box? When a user clicks submit I want it to send an e-mail to the address i've specified....without popping up and asking the user what application they want to use etc, just send the message straight off. I know it needs javascript to clear text once the user clicks on it, however Im worried about doing that then a user coming back to type more and clearing the text when they click on it. Easily handled just shoving in a count?

Finally I do not understand why the div box on the about page or admin page is not centred? The content also overflows on the about page but changing the width did me no favours, how am I meant to control this?

Thanks
 
To stop the pop-up when clicking the submit e-mail button you're going to have to re-direct it to some sort of PHP script which will take the Header and message and email it.

For the div blocks to center on the about and admin page you want to change this in the CSS:
in #block_content_full
Code:
float: left;
to
Code:
margin: 0 auto;

Also to stop the text overflowing on the about page remove the 'width' from .large-content-middle.
 
Sorry the centring thing was just utterly dumb on my behalf, not having the greatest of times lately so my mind is melted.

Cheers for the pointer on the mailing to, gonna get on it now
 
Back
Top Bottom