Everything posted by Jon McWee
-
problem in ie8
Try declaring the margins on an individual basis. i.e. ]#wrapper{ margin-left:auto; margin-right:auto; this always works for me! Also, you do realise that screens that are set to a resolution 800x600 will not view your site correctly, they will have an overlap on the horizontal. You may want to change your width of the wrapper to 950px - i know 800x600 sound old but there are still peeps our there using it.
-
Photoshop tutorial for absolute beginner
http://tv.adobe.com/ I always find this as a great source of info - may be of some help? Best Jon
-
reCaptcha problems
Hello all, I have setup recaptcha on my form and am having a few problems. My form layout is as follows - Form.php - page containing form fields and reCaptcha - source code is below - <?php require_once('recaptchalib.php'); $publickey = "XXXXXXXXXXXXXXXXXXXXXXXXX"; // you got this from the signup page echo recaptcha_get_html($publickey); # the response from reCAPTCHA $resp = null; # the error code from reCAPTCHA, if any $error = null; # are we submitting the page? if ($_POST["submit"]) { $resp = recaptcha_check_answer ($privatekey, $_SERVER["REMOTE_ADDR"], $_POST["recaptcha_challenge_field"], $_POST["recaptcha_response_field"]); if ($resp->is_valid) { echo "You got it!"; # in a real application, you should send an email, create an account, etc } else { # set the error code so that we can display it. You could also use # die ("reCAPTCHA failed"), but using the error message is # more user friendly $error = $resp->error; } } echo recaptcha_get_html($publickey, $error); ?> ---------------------------------------------------------------------------------------------------- Process.php - page containing mail intructions as well as redirect if recaptcha was a success. <?php require_once('recaptchalib.php'); $privatekey = "XXXXXXXXXXXXXXXXXXX"; $resp = recaptcha_check_answer ($privatekey, $_SERVER["REMOTE_ADDR"], $_POST["recaptcha_challenge_field"], $_POST["recaptcha_response_field"]); if(!$resp->is_valid) { header("location:newsletter-success.php"); die(); } else if($resp->is_valid) { header("location:newsletter-error.php"); } mail( "XXXXXXXXXXXXXX", "Newsletter Sign Up", "\nEnquiry From: - $name \nPostcode: - $postcode \nTelephone Number: - $telno \nEMAIL ADDRESS:- $email \nFurther Detail:- $furtherdetails \nPrefered Contact Time:- $contacttime \nInterested in the following newsletter/s:- $newsletters", "From: NewsLetterService@XXXXXXXXXXXXXX" ); ?> ------------------------------------------------------------------------------------------ Success.php - reCapthcha and information sent ok! Error.php - reCaptcha error page with back function to re-enter reCaptcha code. The form sends, and directs to the process.php form page, just stays there, it doesn't then re-direct to the success or error page? Please help, Regards
-
What is wrong with my contact page?
Do you really want to send the message as an email? I can provide example html and php files for processing a form on the web if needed?
-
Am i a div?
Hello people, The page layout is liquid based so will fit all screen res's. I have 2 divs - containers and content. How do i make the content 100% of the containing div? Remember the containing div will change in height on different screen res's. Ragards in advance.
-
Form problem?
Cant be - I have setup the spry / ajax that if no value is enetered the form will not submit and and highlight the required fields - there is also a tool tip next to the field explaining what information has to be placed within? PS - nice snow man!!
-
Form problem?
Hello people, I have setup some forms on a website - http://www.challengingadvice.co.uk/pages/make-enquiry.html . The forms are working, but from time to time I get an email through with no information. The form structure is as follows: - 1: Person enters information into form page - validated through sry/ajax 2: User is then directed to a holding page stating that the information is being processed with animated gif wheel - this page contains the php that send the form details to me. 3: User is the redirected after 4 seconds to thankyou page. 4: User is then rediredted to hompage 4 seconds after the tankyou page. I don't think that it is anyone filling the form out and having problems as when they have gone through testing they all work fine - is this a robot problem from the likes of yahoo and google trawling my pages? Please help, Regards in advance.
-
Arse about face blog inclusion
Is this even possible and how? Regards in advance.
-
RSS Feeds - Is it as simple as creating a file
Hello People, I have a number of websites that i want to intergrate RSS feeds. I want peple to be able to click on the button and have it added to there reader. is it as simple as adding a simple xml file that I update with news? How would one also display other people RSS feeds into there site? Regards in advance.
-
Image Problem
Hi Everyone - I have a promlem!!! Imagine this - I have a 3 column liquid design layout for my website. The dimensions are as follows: - Col1 1 - 60% Width, Col 2 - 20% width, Col 3 - 20% Width. In total, all of the above add up to 100%. I want to insert an image in to col 2 that resizes with the containing div. When i use the following code for the image (<div class="about-ifa"><img src="images/about-ifas.gif" width="100%" height="23%" alt="About our specialist IFAs" /></div>) eevrything displays well in IE8 & FireFox but not Safari and Google Chrome? What is the solution? Please help!!! Many thanks in advance.
-
E Newsletter
I have setup a html file, uploaded it to the server but no information is displayed. Please help
-
FEEDBACK NEEDED
Hi Guys, I have just taken over as Web Development Project Manager for a Marketing company. In this role I am taking over the running of three sites that are at present live, the first is as follows: - http://www.exitwith-profits.co.uk/ THE TARGET MARKET The site is aimed for the 35 - 45 age range that has existing with profit plans. The companies aim is to tell a story that in fact there is a need for investment holders of with profits plans to seek advice through our site and ultimately make an enquiry. What I need to know is - Is the site pleaseing to the eye? Easy to navigate? SEO friendly? I have read the code, and have my own thoughts, what I need to know is feedback from the masses. Please let me know. Many Thanks in advance
-
e-letters
Question: - I want to create a html based e-letter / email that will contain graphics, probably laid out in a table format (I think that this is the way in which it is commonly done. How can this be done? Can it be done through Outlook? Can it only be done through specific software? If so, what is the market leader? can I draft it up in Dreamweaver and export to Outlook? Thanks in advance for any help peeps can give.