Jump to content
Larry Ullman's Book Forums

Paul_Blackpool

Members
  • Posts

    68
  • Joined

  • Last visited

Everything posted by Paul_Blackpool

  1. I'm tying myself up in knots with this. I've tried it all ways but can't get it to work. Could I be cheeky and ask just how to code it. the form field is <input type="text" id="Editbox1" style="position:absolute;left:135px;top:45px;width:198px;height:23px;line-height:23px;z-index:3;" name="first_name" value="" title="First Name:" placeholder="First Name:"> This is how I did it <script type="text/javascript"> <!--header('Location: success.php?name=' . $Editbox1); //--> </script> And this was what I put on the success page Thank you $first_name Your email was sent to us.
  2. I'm going to finish building the site using subfolders because it's easier for me to find things (I'm learning as I go) instead of there being just one long list of pages. You are right though if I change any of the images in the future or someone suggests a new nifty nav bar then I would have to go through all the subfolders and change things, so when I finish it I will take the pages out of subfolders so it's easier to update in the future. Ive finished the structure and created all the forms, so now for the tricky part of custom codeing them so they display the data right and put things into and retreive from the database. I may be on here rather often asking for help and some of the things I ask will probally seem obvious to the more experianced lads so, I will appologise in advance if i become a nusence. I am determined to get this site built i started to learn this because I got fed up of people who said they could build us a site, got half way through it and then vanished of the face of the earth and left us high and dry but not before they got paid for what they had already done. So I bought Lary's book and away I went.
  3. Thats what it is hartley. Some of the pages are in subfolders. I have added an extra menue to the nav bar and it updates all the pages OK regardless if they are in the main site folder or a subfolder. I have to copy over the images into the subfolders image folder for some reason but anyway it works and everything updates all the changes made to the header. If i go into one of the pages say about the address is just www.trsb.co.uk/about.php but if I go into a page thats in a subfolder the address is www.trsb.co.uk/contact_folder/contact.php Can you see the subfolder "contact_folder"/contact.php. Its like putting the header and footer into an "Includes" folder. It keeps the site structure tidy.
  4. Just noticed that when I include the header on a page that's not in a folder all I need is include ('includes/header.html'); If I include a page thats actually in a folder when I test the page it says it cant find the includes path, so on those pages I have added the path i.e include ('..//includes/header.html'); then it works fine and displays the header OK in the browser. Is this normal or have I done something wrong again? I have pages that display from the site and then I have folders like Jobseekers folder with all the pages relating to jobseekers contained in the folder. I've done this just to keep the directory tidy.
  5. I have 2 pages "Contact.php" and "Success.php" The contact form has the fields validated in javascript i.e <script type="text/javascript" src="./jquery-1.7.2.min.js"></script> <script type="text/javascript"> <!-- function Validategeneral_contact_form(theForm) { var regexp; if (theForm.Editbox1.value == "") { alert("You Forgot To Enter Your First Name!"); theForm.Editbox1.focus(); return false; } </script> When the user presses the submit, if all is ok the user is re-directed to the success page that just says your details have been sent. What I would like to know how can I get the success page to display "Thank you Billy, your details have been sent. I have tried a few senarios but none seem to work.
  6. Thanks lads I should have noticed that myself. I've slapped my leggs and sent myself to bed without any supper. Just a quick one. Is there a short cut to includes and the database ect i.e. instead of C:\exammp\the include to - ..//the include
  7. Just noticed a problem and not sure what I am doing wrong. I think I have the <title><php echo $page_title; ?></title> statement in the right place but when I test the page through the local server i get <php echo $page_title; ?> Attached the code from the header and the home page. If I take the php statements out and put a name in the title tags it returns 'local host' This is the header page code <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title><php echo $page_title; ?></title> This is the home page code <?php $page_title = 'Home'; include ('header.html'); ?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
  8. Just changed the style. See what you think of the new one Hartley There are about 20 to choose from but most of them are pretty much the same but differant colours
  9. What way does it look weird Hartley. I've just looked at it in Chrome and IE and it looked the same to me. is it just the general layout your on about
  10. Thanks Hartley. I'm starting to get my head round building this website now. I'm doing it in a program called wisywyg web editor. You can drag and drop images and it has all sorts of ready made things like login pages and ready made javascripts. It seems to put a lot of CSS code on the page but once I see past that it's not to bad. made a few changes if you want to look http://www.trsb.co.uk. Thanks for all the help. Regards Paul
  11. Just a quick one. I have a file upload button on my form which allows users to upload items like their CV. This can be in Word, PDF, JPEG, and such. Do I still use varcher as the db table row name or do I need something else. Just read the thread "File Uploads" (Its not just me then)
  12. I have created Jobseeker Registration form and tested it. All's working fine and the email that's received works correctly, however I do have a slight problem. In combobox 1 there are descriptions of the categories ie Agriculture, Catering and Hotel Work ect they are in the "Item Text" each name has a value ie Agriculture is value 1, Catering and Hotel Work is value 2 and so on. When I looked at the database in the table the form has put in the values ie:- job_category 1, 2, ect. How can I get the job category descriptions so the database displays them. I have tried entering the description in the value field and changing the code to read as below but that doesnt work. When I select a job category the 2nd combo box is empty. var combo1 = document.getElementById('Combobox1'); var combo2 = document.getElementById('Combobox2'); var selected = combo1.options[combo1.options.selectedIndex].value; if (selected == Agriculture) I think I've added the right codeand posted it right this time Any help would be apreciated <script type="text/javascript"> function fillSecondCombo() { var combo1 = document.getElementById('Combobox1'); var combo2 = document.getElementById('Combobox2'); var selected = combo1.options[combo1.options.selectedIndex].value; if (selected == 1) { combo2.options.length = 3; combo2.options[0] = new Option("Please Select", "Please Select"); combo2.options[1] = new Option("Agricultural Engineer", "Agricultural Engineer"); combo2.options[2] = new Option("Animal Care", "Animal Care"); <select name="job_cat" size="1" id="Combobox1" onchange="fillSecondCombo();return false;" style="position:absolute;left:138px;top:451px;width:167px;height:22px;z-index:14;" title="Job Category:"> <option selected value="0">Please select an option</option> <option value="1">Agriculture</option> <option value="2">Catering and Hotel Work</option> </select> <select name="job_skills[]" multiple size="1" id="Combobox2" style="position:absolute;left:127px;top:548px;width:202px;height:163px;z-index:15;" title="Job Skills:"> </select>
  13. Well I think I have just created my first website. I have not yet implimented the checkboxes and I have to create another area of the site to post and search jobs (That should be challenging) but all in all for a first attempt, well I think its OK. Would apreciate you more experianced lads taking a look and see if I have obviously done anything wrong. The site address is: http://www.trsb.co.uk/new I would like to thank you all for your help and advice.
  14. Thanks rob. I have tested the code in my editor and it works perfect thanks HartleySan. The only thing is the check boxes and descriptions scroll across the page. Is it possible to put them into a box so when a line fills the box from left to right it wraps onto a new line?
  15. Thanks HartleySan. Just so I can try and get the post right how should the script that I posted look. That would help me as then I will learn which parts of the script I need to display. As I explained I am new to this but I am learning
  16. Thanks HartleySan that’s a big help for me. margux I understand what you’re saying. I’m new to this and I had to start learning because I was let down by people who were supposed to be website developers. I am using a program called wisywig web editor because it’s easy. It’s like building the pages in word and has drag and drop functions, however it only generates the code and you can’t edit it from within the program. I have noticed that when you create a blank page it does have a lot of little code and I am not really sure what it means half of the time. I think I will study it tonight and see if I can get my head round it. HartleySan has always been very helpful when I have got stuck and tells me how to do things in a way that I can understand. I will get better with time (Promise)
  17. I was wandering if someone could help with this. I have created 2 combo boxes and the values from combo1 populate combo2. Combo box 2 is multi select. I then created the form processor to send the user a copy of what they have selected from the form. The problem I have is when the email is received by the user, where I have added "Main Industry" it shows a number. How can I get the email to show the main value i.e. "Agriculture" "Hospitality" instead of the values "1" "2" The second thing I cannot seem to work out is where I have "Job Skills" on the email which is basically values from combo2. It will only send the user 1 item, so if the user holds down the CTRL key and selects 3 items it's only the last item that gets sent. I have attached the scripts as below. Or is java not the best way to do this?. This is the form structure and the java script: <select name="job_cat" size="1" id="Combobox1" onchange="fillSecondCombo();return false;" style="position:absolute;left:156px;top:451px;width:167px;height:22px;z-index:15;" title="Job Category:"> <option selected value="0">Please select an option</option> <option value="1">Agriculture</option> <option value="2">Catering and Hotel Work</option> </select> <select name="job_skills" size="1" id="Combobox2" style="position:absolute;left:127px;top:486px;width:202px;height:20px;z-index:16;" title="Job Skills:"> </select> <script type="text/javascript"> function fillSecondCombo() { var combo1 = document.getElementById('Combobox1'); var combo2 = document.getElementById('Combobox2'); var selected = combo1.options[combo1.options.selectedIndex].value; if (selected == 1) { combo2.options.length = 3; combo2.options[0] = new Option("Agricultural Engineer", "Agricultural Engineer"); combo2.options[1] = new Option("Animal Care", "Animal Care"); combo2.options[2] = new Option("Dairy Worker", "Dairy Worker"); combo2.options[3] = new Option("Farm Worker", "Farm Worker"); combo2.options[4] = new Option("Harvesting Equipment Driver", "Harvesting Equipment Driver"); combo2.options[5] = new Option("Tractor Driver", "Tractor Driver"); combo2.options[6] = new Option("Zoo and Safari Park Worker", "Zoo and Safari Park Worker"); combo2.options[7] = new Option("Other (As Per CV)", "Other (As Per CV)"); } else if (selected == 2) { combo2.options.length = 3; combo2.options[0] = new Option("Baker", "Baker"); combo2.options[1] = new Option("Bar Worker", "Bar Worker"); combo2.options[2] = new Option("Barista", "Barista"); combo2.options[3] = new Option("Butcher", "Butcher"); combo2.options[4] = new Option("Chef / Cook", "Chef / Cook"); combo2.options[5] = new Option("Catering Manager", "Catering Manager"); combo2.options[6] = new Option("Housekeeping", "Housekeeping"); combo2.options[7] = new Option("Hotel Management", "Hotel Management"); combo2.options[8] = new Option("Hotel Front of House", "Hotel Front of House"); combo2.options[9] = new Option("Hotel Portering", "Hotel Portering"); combo2.options[10] = new Option("Licensed Premises Manager", "Licensed Premises Manager"); combo2.options[11] = new Option("Restaurant Manager", "Restaurant Manager"); combo2.options[12] = new Option("Waiting at Tables", "Waiting at Tables"); combo2.options[13] = new Option("Other (As Per CV)", "Other (As Per CV)"); } } </script> This is the email script: <?php if($_SERVER['REQUEST_METHOD'] == 'POST') { $mailto = 'paul@myemail.co.uk'; $mailfrom = isset($_POST['email']) ? $_POST['email'] : $mailto; $subject = 'Website form'; $message = 'Values submitted from web site form:'; $success_url = './../Mail_Folder/success.php'; $error_url = './../Mail_Folder/fail.html'; $header = 'From: '.$mailfrom.$eol; $header .= 'Reply-To: '.$mailfrom.$eol; $header .= 'MIME-Version: 1.0'.$eol; $header .= 'Content-Type: multipart/mixed; boundary="'.$boundary.'"'.$eol; $header .= 'X-Mailer: PHP v'.phpversion().$eol; { $message .= ucwords(str_replace("_", " ", $key)) . " : " . $value . $eol; } else { $message .= ucwords(str_replace("_", " ", $key)) . " : " . implode(",", $value) . $eol; } } } $body = 'This is a multi-part message in MIME format.'.$eol.$eol; $body .= '--'.$boundary.$eol; $body .= 'Content-Type: text/plain; charset=ISO-8859-1'.$eol; $body .= 'Content-Transfer-Encoding: 8bit'.$eol; $body .= $eol.stripslashes($message).$eol; if (!empty($_FILES)) { foreach ($_FILES as $key => $value) if ($_FILES[$key]['error'] == 0 && $_FILES[$key]['size'] <= $max_filesize) { $body .= '--'.$boundary.$eol; $body .= 'Content-Type: '.$_FILES[$key]['type'].'; name='.$_FILES[$key]['name'].$eol; $body .= 'Content-Transfer-Encoding: base64'.$eol; $body .= 'Content-Disposition: attachment; filename='.$_FILES[$key]['name'].$eol; $body .= $eol.chunk_split(base64_encode(file_get_contents($_FILES[$key]['tmp_name']))).$eol; } } } $body .= '--'.$boundary.'--'.$eol; mail($mailto, $subject, $body, $header); header('Location: '.$success_url); exit; } ?>
  18. Thanks hartleySan Thats partley what I needed however I need the second dropdown lost to be multi select. ie as per your example: Breakfast is in the dropdown list so if a user selects "Breakfast" the second box would contain the options Bacon Eggs Tomatos Mushrooms. So the user would select "Breakfast" from the first drop down box. and then be able to select from the second box x Bacon Eggs Tomatos x Mushrooms I know this could be done by the user holding down the ctrl key but I wanted to have selection boxes at the side ie
  19. I have created a couple of combo boxes using javascript. Is it possible to code the script so in the second combo box the user can click on a checkbox and select more than one option. If the visitor selects a value in the 1st combo box ie "Transport and Logistics" The values in the second combo box are HGV Driver FLT Driver Traffic Clerk Transport Manager ADR MOFFAT I thought it may have been as below but that doesnt work, or am I using the wrong script. < script type="text/javascript"> function fillSecondCombo() { var combo1 = document.getElementById('Combobox1'); var combo2 = document.getElementById('Combobox2'); var selected = combo1.options[combo1.options.selectedIndex].value; if (selected == 1) { combo2.options.length = 3; combo2.options[0] = new Option("Item 1", "HGV Driver"); combo2.options[1] = new Option("Item 2", "FLT Driver"); combo2.options[2] = new Option("Item 3", "Traffic Clerk"); combo2.options[3] = new Option("Item 4", "Transport Manager"); combo2.options[4] = new Option("Item 5", "ADR"); combo2.options[5] = new Option("Item 6", "MOFFAT"); } else { combo2.options.length = 0; } } </ script> </ head> < body> < select name="Combobox1"="1" id="Combobox1" onchange="fillSecondCombo();return false;" style="position:absolute;left:110px;top:118px;width:167px;height:22px;z-index:0;"> < option selected value="0">Please select an option</option> < option value="1">Transport and Logistics</option> < select> < select name="Combobox2" input type=checkbox;combo2.options.length = 3; size size="1" id="Combobox2" style="position:absolute;left:287px;top:118px;width:128px;height:22px;z-index:1;"> </ select> </ body> </ html>
  20. Thanks lads Iv'e fixed it. The menue bar is one of those mega ones that I tried but I just went back to a tab menue and it works fine. Still cant work out why it apears on the header page but when you include the header page on the home page it vanishes I thought it was the relative to option in DW but that didn't work either. Thanks for the input
  21. I have created a header with the usual items. ie logo and menue bar. If I run the header through the server all works fine, however if I include it on the home page everything appears except the menue bar. Obviously I have done something wrong. The first code is from the header.html and the second from the index.php. Any help would be apreciated. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title><?php echo $page_title; ?></title> <meta name="generator" content="The Recruitment Services - http://www.trsb.co.uk"> <style type="text/css"> div#container { width: 766px; position: relative; margin-top: 0px; margin-left: auto; margin-right: auto; text-align: left; } body { text-align: center; margin: 0; background-color: #FFFFFF; color: #000000; } </style> <script type="text/javascript" src="jscookmenu.min.js"></script> <style type="text/css"> a { color: #C8D7EB; text-decoration: underline; } a:visited { color: #C8D7EB; } a:active { color: #C8D7EB; } a:hover { color: #376BAD; text-decoration: underline; } </style> <style type="text/css"> #Image1 { border: 0px #000000 solid; } .ThemeMenuBar1Menu, .ThemeMenuBar1SubMenuTable { font-family: Arial; font-size: 13px; font-weight: normal; color: #376BAD; text-align: left; padding: 0; cursor: pointer; } .ThemeMenuBar1MenuOuter { background-color: #BBCEE6; border: 0; } .ThemeMenuBar1SubMenu { position: absolute; visibility: hidden; border: 0; padding: 0; border: 0; } .ThemeMenuBar1Menu td { padding: 3px 0px 3px 0px; } .ThemeMenuBar1SubMenuTable { color: #376BAD; text-align: left; background-color: #BBCEE6; font-weight: normal; font-style: normal; text-decoration: none; } .ThemeMenuBar1SubMenuTable td { white-space: nowrap; } .ThemeMenuBar1MainItem { } .ThemeMenuBar1MainItem, .ThemeMenuBar1MainItemHover, .ThemeMenuBar1MainItemActive, .ThemeMenuBar1MenuItem, .ThemeMenuBar1MenuItemHover, .ThemeMenuBar1MenuItemActive { white-space: nowrap; } .ThemeMenuBar1MainItemHover, .ThemeMenuBar1MainItemActive { color: #376BAD; background-color: #EDF2F8; font-weight: normal; font-style: normal; text-decoration: none; } .ThemeMenuBar1MenuItemHover, .ThemeMenuBar1MenuItemActive { color: #376BAD; background-color: #EDF2F8; font-weight: normal; font-style: normal; text-decoration: none; } .ThemeMenuBar1MenuFolderLeft, .ThemeMenuBar1MenuFolderRight, .ThemeMenuBar1MenuItemLeft, .ThemeMenuBar1MenuItemRight { padding: 3px 0px 3px 0px; } td.ThemeMenuBar1MainFolderText, td.ThemeMenuBar1MainItemText { padding: 3px 5px 3px 5px; } .ThemeMenuBar1MenuFolderText, .ThemeMenuBar1MenuItemText { padding: 3px 5px 3px 5px; } td.ThemeMenuBar1MenuSplit { overflow: hidden; background-color: inherit; } div.ThemeMenuBar1MenuSplit { height: 1px; margin: 0px 0px 0px 0px; overflow: hidden; background-color: inherit; border-top: 1px solid #376BAD; } .ThemeMenuBar1MenuVSplit { display: block; width: 1px; margin: 0px 7px 0px 7px; overflow: hidden; background-color: inherit; border-right: 1px solid #376BAD; } #Image3 { border: 0px #000000 solid; } #Image4 { border: 0px #000000 solid; } </style> </head> <body> <div id="container"> <div id="wb_Image1" style="position:absolute;left:1px;top:5px;width:775px;height:108px;z-index:0;"> <img src="/trsb/images/Header.jpg" id="Image1" alt="" border="0" style="width:775px;height:108px;"></div> <div id="wb_MenuBar1" style="position:absolute; left:179px; top:117px; width:450px; height:22px; z-index:1001;"> <div id="MenuBar1"> <ul style="display:none;"> <li><span></span><span><a href="index.php">Home</span></li> <li><span></span><span>About</span></li> <li><span></span><span>Contact</span></li> <li><span></span><span>Employers</span></li> <li><span></span><span>Jobseekers</span></li> <li><span></span><span>Training</span></li> <li><span></span><span>Extras</span></li> </ul> </div> <script type="text/javascript"> <!-- var cmMenuBar1 = { mainFolderLeft: '', mainFolderRight: '', mainItemLeft: '', mainItemRight: '', folderLeft: '', folderRight: '', itemLeft: '', itemRight: '', mainSpacing: 0, subSpacing: 0, delay: 100, offsetHMainAdjust: [0, 0], offsetSubAdjust: [0, 0] }; var cmThemeMenuBar1HSplit = [_cmNoClick, '<td colspan=3" class="ThemeMenuBar1MenuSplit"><div class="ThemeMenuBar1MenuSplit"><\/div><\/td&gt]; var cmThemeMenuBar1MainHSplit = [_cmNoClick, '<td colspan=3" class="ThemeMenuBar1MenuSplit"><div class="ThemeMenuBar1MenuSplit"><\/div><\/td&gt]; var cmThemeMenuBar1MainVSplit = [_cmNoClick, '<div class=ThemeMenuBar1MenuVSplit">|<\/div&gt]; cmDrawFromText('MenuBar1', 'hbr', cmMenuBar1, 'ThemeMenuBar1'); --> </script> </div> <div id="wb_Image3" style="position:absolute; left:70px; top:116px; width:73px; height:23px; z-index:2;"> <img src="/trsb/images/img0050_02.gif" id="Image3" alt="Decrotive Arrow Pointing Left" border="0" style="width:73px;height:23px;"></div> <div id="wb_Image4" style="position:absolute; left:658px; top:113px; width:72px; height:26px; z-index:3;"> <img src="/trsb/images/img0051_02.gif" id="Image4" alt="Decrotive Arrow Pointing Right" border="0" style="width:72px;height:26px;"></div> </div> </body> </html> <?php $page_title = 'Home Page'; include ('includes/header.html') ?> <title>Home Page</title> <style type="text/css"> div#container { width: 994px; position: relative; margin-top: 0px; margin-left: auto; margin-right: auto; text-align: left; } body { text-align: center; margin: 0; background-color: #FFFFFF; color: #000000; } </style> <style type="text/css"> a { color: #C8D7EB; text-decoration: underline; } a:visited { color: #C8D7EB; } a:active { color: #C8D7EB; } a:hover { color: #376BAD; text-decoration: underline; } a.style1:link { color: #0000FF; } a.style1:visited { color: #800080; text-decoration: underline; } a.style1:active { color: #FF0000; font-weight: bold; text-decoration: underline; } a.style1:hover { color: #0000FF; text-decoration: underline; } </style> <style type="text/css"> #Line1 { color: #E6E6FA; background-color: #E6E6FA; border-width: 0px; } #wb_Text3 { background-color: transparent; border: 0px #000000 solid; padding: 0; } #wb_Text3 div { text-align: center; } #Image6 { border: 0px #000000 solid; } #wb_Text1 { background-color: transparent; border: 0px #000000 solid; padding: 0; } #wb_Text1 div { text-align: center; } #Image9 { border: 0px #000000 solid; } #wb_Text2 { background-color: transparent; border: 0px #000000 solid; padding: 0; } #wb_Text2 div { text-align: left; } #wb_Text4 { background-color: transparent; border: 0px #000000 solid; padding: 0; } #wb_Text4 div { text-align: left; } #Image5 { border: 0px #000000 solid; } #wb_Text5 { background-color: transparent; border: 0px #000000 solid; padding: 0; } #wb_Text5 div { text-align: center; } #wb_Text6 { background-color: transparent; border: 0px #000000 solid; padding: 0; } #wb_Text6 div { text-align: center; } #wb_Text7 { background-color: transparent; border: 0px #000000 solid; padding: 0; } #wb_Text7 div { text-align: left; } #Image7 { border: 0px #000000 solid; } #wb_Text23 { background-color: transparent; border: 0px #000000 solid; padding: 0; } #wb_Text23 div { text-align: left; } #wb_Text24 { background-color: transparent; border: 0px #000000 solid; padding: 0; } #wb_Text24 div { text-align: left; } #wb_Text22 { background-color: transparent; border: 0px #000000 solid; padding: 0; } #wb_Text22 div { text-align: left; } #wb_Text25 { background-color: transparent; border: 0px #000000 solid; padding: 0; } #wb_Text25 div { text-align: left; } #wb_Text26 { background-color: transparent; border: 0px #000000 solid; padding: 0; } #wb_Text26 div { text-align: left; } #wb_Text27 { background-color: transparent; border: 0px #000000 solid; padding: 0; } #wb_Text27 div { text-align: left; } #Image8 { border: 0px #000000 solid; } #Image10 { border: 0px #000000 solid; } #Image11 { border: 0px #000000 solid; } #Image12 { border: 0px #000000 solid; } #Image13 { border: 0px #000000 solid; } #Image14 { border: 0px #000000 solid; } #wb_Text8 { background-color: transparent; border: 0px #000000 solid; padding: 0; } #wb_Text8 div { text-align: justify; } #wb_Text30 { background-color: transparent; border: 0px #000000 solid; padding: 0; } #wb_Text30 div { text-align: center; } #wb_Text9 { background-color: transparent; border: 0px #000000 solid; padding: 0; } #wb_Text9 div { text-align: left; } </style> </head> <body> <div id="container"> <hr id="Line1" style="margin:0;padding:0;position:absolute;left:18px;top:717px;width:746px;height:75px;z-index:0;"> <div id="wb_Shape2" style="position:absolute;left:280px;top:195px;width:153px;height:175px;z-index:1;"> <img src="images/img0002.gif" id="Shape2" alt="" style="border-width:0;width:153px;height:175px;"></div> <div id="wb_Text3" style="position:absolute;left:208px;top:150px;width:127px;height:18px;text-align:center;z-index:2;"> <span style="color:#000000;font-family:Arial;font-size:16px;">You are Here</span></div> <div id="wb_Image6" style="position:absolute;left:341px;top:150px;width:62px;height:18px;z-index:3;"> <img src="images/img0060_02.gif" id="Image6" alt="" border="0" style="width:62px;height:18px;"></div> <div id="wb_Text1" style="position:absolute;left:405px;top:149px;width:111px;height:18px;text-align:center;z-index:4;"> <span style="color:#000000;font-family:Arial;font-size:16px;">Home Page</span></div> <div id="wb_Shape1" style="position:absolute;left:54px;top:194px;width:153px;height:175px;z-index:5;"> <img src="images/img0001.gif" id="Shape1" alt="" style="border-width:0;width:153px;height:175px;"></div> <div id="wb_Image9" style="position:absolute;left:59px;top:236px;width:138px;height:8px;z-index:6;"> <img src="images/img0063_02.png" id="Image9" alt="" border="0" style="width:138px;height:8px;"></div> <div id="wb_Text2" style="position:absolute;left:86px;top:199px;width:104px;height:23px;z-index:7;"> <span style="color:#000000;font-family:Arial;font-size:20px;">Employers</span></div> <div id="wb_Text4" style="position:absolute;left:308px;top:199px;width:113px;height:23px;z-index:8;"> <span style="color:#000000;font-family:Arial;font-size:20px;">Jobseekers</span></div> <div id="wb_Image5" style="position:absolute;left:285px;top:236px;width:142px;height:8px;z-index:9;"> <img src="images/img0063_02.png" id="Image5" alt="" border="0" style="width:142px;height:8px;"></div> <div id="wb_Text5" style="position:absolute;left:52px;top:249px;width:154px;height:90px;text-align:center;z-index:10;"> <span style="color:#000000;font-family:Arial;font-size:16px;">Login<br><br> Create an account<br><br>Contact Us</span></div> <div id="wb_Text6" style="position:absolute;left:279px;top:250px;width:149px;height:108px;text-align:center;z-index:11;"> <span style="color:#000000;font-family:Arial;font-size:16px;">Login<br><br>Create an account<br><br>Register for agency work</span></div> <div id="wb_Shape4" style="position:absolute;left:513px;top:163px;width:252px;height:537px;z-index:12;"> <img src="images/img0003.gif" id="Shape4" alt="" style="border-width:0;width:252px;height:537px;"></div> <div id="wb_Text7" style="position:absolute;left:588px;top:171px;width:147px;height:23px;z-index:13;"> <span style="color:#000000;font-family:Arial;font-size:20px;">Job Sectors</span></div> <div id="wb_Image7" style="position:absolute;left:526px;top:203px;width:227px;height:6px;z-index:14;"> <img src="images/img0063_02.png" id="Image7" alt="" border="0" style="width:227px;height:6px;"></div> <div id="wb_Text23" style="position:absolute;left:610px;top:241px;width:94px;height:32px;z-index:15;"> <span style="color:#000000;font-family:Arial;font-size:13px;">Skilled Workers</span></div> <div id="wb_Text24" style="position:absolute;left:610px;top:323px;width:114px;height:30px;z-index:16;"> <span style="color:#000000;font-family:Arial;font-size:12px;">Plant & Construction</span></div> <div id="wb_Text22" style="position:absolute;left:609px;top:400px;width:115px;height:30px;z-index:17;"> <span style="color:#000000;font-family:Arial;font-size:12px;">Transport & logistics</span></div> <div id="wb_Text25" style="position:absolute;left:609px;top:484px;width:120px;height:30px;z-index:18;"> <span style="color:#000000;font-family:Arial;font-size:12px;">Catering & Hospitality</span></div> <div id="wb_Text26" style="position:absolute;left:609px;top:567px;width:82px;height:30px;z-index:19;"> <span style="color:#000000;font-family:Arial;font-size:12px;">Office & Admin</span></div> <div id="wb_Text27" style="position:absolute;left:628px;top:651px;width:104px;height:30px;z-index:20;"> <span style="color:#000000;font-family:Arial;font-size:12px;">General Workforce</span></div> <div id="wb_Image8" style="position:absolute;left:524px;top:296px;width:71px;height:71px;z-index:21;"> <img src="images/constructionwork.jpg" id="Image8" alt="" border="0" style="width:71px;height:71px;"></div> <div id="wb_Image10" style="position:absolute;left:523px;top:214px;width:76px;height:74px;z-index:22;"> <img src="images/skilledwork.jpg" id="Image10" alt="" border="0" style="width:76px;height:74px;"></div> <div id="wb_Image11" style="position:absolute;left:523px;top:378px;width:74px;height:68px;z-index:23;"> <img src="images/transport.jpg" id="Image11" alt="" border="0" style="width:74px;height:68px;"></div> <div id="wb_Image12" style="position:absolute;left:519px;top:463px;width:89px;height:60px;z-index:24;"> <img src="images/catering.jpg" id="Image12" alt="" border="0" style="width:89px;height:60px;"></div> <div id="wb_Image13" style="position:absolute;left:519px;top:541px;width:86px;height:75px;z-index:25;"> <img src="images/office.jpg" id="Image13" alt="" border="0" style="width:86px;height:75px;"></div> <div id="wb_Image14" style="position:absolute;left:519px;top:631px;width:99px;height:59px;z-index:26;"> <img src="images/general.jpg" id="Image14" alt="" border="0" style="width:99px;height:59px;"></div> <div id="wb_Text8" style="position:absolute;left:18px;top:403px;width:456px;height:289px;text-align:justify;z-index:27;"> <span style="color:#000000;font-family:Arial;font-size:15px;">We supply staff on a Temporary, Permanent and Temp to Perm basis to some well known Blue Chip companies and Local Authorities all over the UK. <br><br>Whether you’re an Employer looking for staff or a Jobseeker looking for work we can help. Employers can also post permanent vacancies and search CVs on this site. Jobseekers just register and search for currently active jobs or complete our agency registration form and we will contact you with further information. <br><br>You can access most of this site by using the navigation bar above. <br><br>For privacy reasons some areas are protected and can only be accessed by registered users. <br><br>You can create a free account at any time. Or if you have already registered please log in.</span></div> <div id="wb_Text30" style="position:absolute;left:134px;top:737px;width:468px;height:14px;text-align:center;z-index:28;"> <span style="color:#004080;font-family:Arial;font-size:11px;">Copyright © 2007 by "Stubbs Management Services Limited" All Rights reserved</span></div> <div id="wb_Text9" style="position:absolute;left:213px;top:765px;width:335px;height:16px;z-index:29;"> <span style="color:#000000;font-family:Arial;font-size:13px;"><strong><a href="./terms_and_legal/site_terms.html" class="style1">Site Terms</a> | Privacy Policy | <a href="./terms_and_legal/disclaimer.html" class="style1">Disclaimer</a> | <a href="./site_map.html" class="style1">Site Map</a> | </strong></span></div> </div> </body> </html>
×
×
  • Create New...