Skip to content
View in the app

A better way to browse. Learn more.

Web Designer Forum

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

apollo-articles

Members
  • Joined

  • Last visited

Everything posted by apollo-articles

  1. It's usually when multiple web 2.0 properties are created and interlinked (whilst also linking to your main site). Whether it's beneficial depends on it's use (where the properties are made/content quality ect). Sam
  2. Thanks, so how would I fix this issue? By the way you have a typo in your sig. Sam
  3. On my websites form my date of birth data is showing on two lines, I'd like it to show on one line instead. When I test the code in JSFiddle it show's on one line so I believe there must be a width issue. The URL is: incomeprotectionstore.co.uk The CSS can be found at: incomeprotectionstore.co.uk/images/index.css The Form CSS is found at: incomeprotectionstore.co.uk/form.n1.css You can see the issue on the right hand form. Any help would be much appreciated. Thanks, Sam
  4. Hey! I'm looking for a scrolling image widget - with spaces between the photos. I can find a non scrolling one easily/one without spaces! But the spaces make it look neat and scrolling makes it look like theres a lot going on - so to speak! You can see an example of what I'm looking for at: http://hypeclothinguk.bigcartel.com/ Many thanks! Sam
  5. Hey I use the theme shell-lite for my website (Wordpress), which draws from front-page.php for the featured image (grey image with logos ect). I'd like to put a video where the current image is alongside some new text (where the current text is) and push what is there at the moment (the grey image and text) down. The video is converted to .flv and held in my websites root alongside FLVPlayer.swf. I have also installed the plugin "Hana Flv Player" I tried putting the text which should display my video into the .php file (as suggested: http://themeid.com/help/discussion/372/how-to-change-highlander-featured-image-to-youtube-video/p1) but it read it as text rather than as a video. Any idea on a solution? I'd rather not use a YouTube video since people are likely to click away onto YouTube and get carried away there. Thanks, Sam P.S. My site link: jcslimited.co.uk
  6. Hey everyone, How much would you charge for a four page CPA style website?
  7. Yup, from the wordpress admin page - however it keeps reverting back! Sam
  8. Hey, How can I set my Business lite theme up so the Slider only displays the first slide? I.E. I have no interest in the second or third slide? Thanks, Sam Find my site: here
  9. Hey guys, I'm currently working on a wordpress based wedding website however, when I type bold/italic text in either the visual designer or the html it only displays as standard text. How can I fix this issue? Please see the site here. Thanks, Sam
  10. Hey guys, Been trying to setup a new site like my old one, but having two problems: 1. My side navigation bar is showing between my page content and right sidebar. Find by visiting a 404 page such as: http://www.buy-lifeinsurance.co.uk/privacy-policy/'>http://www.buy-lifeinsurance.co.uk/privacy-policy/ It looks like: "Buy life insurance Contact" I need to figure out a way so this aligns to the left of the content (as a normal navigational bar would). At the moment to complicate matter I've got it in my right hand sidebar and my right hand form is in my lefthand side bar and floated to the right (as this is the only one that's styled and I don't know how to do this myself). 2. The content is overflowing outside the main white box, it should be inline with my header image please see at: Please see the site: http://www.buy-lifeinsurance.co.uk/ Can anyone help me with these issues? Thanks, Sam
  11. Thanks, To be honest I'm only really concerned with IE8, you're link say's it's "Buggy", I don't really mind if it doesn't appear in IE8 just if it screws up big time. I'll give it a go, then run it through browser shots. Sam
  12. Thanks, Will this cause any issues with old browsers/IE? Sam
  13. Hey, I'd like to add a dotted rectangular border around an image and one paragraph of text. Is this possible in HTML/CSS? Ideally the border would look something like: this. Thanks, Sam
  14. I know, I know...iFrames suck! Anyway! I am semi-forced to use one in an on-going project of mine. If you visit my site you can see I have a button for the form submission below the form (with the text "Instant Quote"). I have just added another image, which also looks like a button (the idea is to move the eye onto the form). Since the form is in a seperate iframe to this new button/image (contains the text "Compare the market") can I get it to act like a button in the same way the "Instant Quote" button does? Thanks! Sam
  15. Thanks guys! Fixed perfectly it's another +1 Christmas! Sam
  16. Hey, As you can see from the following image, my footer is extending beyond where it should be! My site can be found by clicking here. Any ideas? Sam
  17. Thanks all sorted! Sam
  18. Hey guys, I have a form on my website that I'd like to pre fill. Obviously I can't pre fill the contact details section, but I'd like to get the "Insurance details" section pre filled to the default values but still have the drop down menu available for people to change them. Could someone tell me how to do this? The following is my code: <?php include("config-tch.php"); include($header_file_name); extract($_REQUEST); if($submit){ include("life-insurance-brain.php"); }else{ // Show the form: ?> <script type="text/javascript"> function validate_form(form) { if (form.x_C1Title.value == "") { alert("Please enter your title"); return false; } if (form.x_C1Forename.value == "") { alert("Please enter your first name"); return false; } if (form.x_C1Surname.value == "") { alert("Please enter your last name"); return false; } if (form.x_C1DOB_day.value == "") { alert("Please enter the day you were born"); return false; } if (form.x_C1DOB_month.value == "") { alert("Please enter the month you were born"); return false; } if (form.x_C1DOB_year.value == "") { alert("Please enter the year you were born"); return false; } if ((form.x_C1Smoker[0].checked == false) && (form.x_C1Smoker[1].checked == false)) { alert("Are you a smoker?"); return false; } if (form.x_C1Email.value == "") { alert("Please enter your email address"); return false; } if (form.x_C1HomeTel.value == "") { alert("Please enter your home telephone number"); return false; } if ((form.x_Joint[0].checked == false) && (form.x_Joint[1].checked == false)) { alert("Is this a joint application?"); return false; } //If a return journey is select, have all the return details been entered? if ((form.x_Joint[1].checked == true) && (form.x_C2Title.value == "" || form.x_C2Title.value == "" || form.x_C2Title.value == "")){ alert("Please fill in information about your partner"); return false; } if ((form.x_C1HouseNumber.value == "") && (form.x_C1HouseFlatName.value == "")){ alert("Please enter your house/flat name or number"); return false; } if (form.x_C1Street.value == "") { alert("Please enter your street address"); return false; } if (form.x_C1Town.value == "") { alert("Please enter your town"); return false; } if (form.x_C1County.value == "") { alert("Please enter your county"); return false; } if (form.x_C1Postcode.value == "") { alert("Please enter your postcode"); return false; } if (form.x_InsuranceType.value == "") { alert("Please enter your insurance type"); return false; } if (form.x_CoverType.value == "") { alert("Please enter your cover type"); return false; } if (form.x_CoverYears.value == "") { alert("Please enter the period of years"); return false; } if (form.x_CoverAmount.value == "") { alert("Please enter an insurance amount"); return false; } if (form.x_PremiumType.value == "") { alert("Please select a premium"); return false; } else { form.submit(); } } </Script> <form action="<?php echo $_SERVER['PHP_SELF']?>" method="post" target="_parent" name="quote" onsubmit="return validate_form (quote);"> <p> <STYLE TYPE="text/css"> .buttonclass{ background-image:url(http://www.lifeinsurancequotesx.co.uk/submitbutton2.jpg); width:204px; height:39px; overflow: hidden; cursor: pointer; /* hand-shaped cursor */ cursor: hand; /* for IE 5.x */ border:0; } h3 { color: #424242; font-family: "Adobe Caslon Pro", "Hoefler Text", Georgia, Garamond, Times, serif; letter-spacing:0.1em; display:inline; margin: 5px auto; text-transform: lowercase; line-height: 145%; font-size: 12pt; font-variant: small-caps; } h2 { color: #f3932d; font-family: "Trebuchet MS", "Trebuchet MS", Verdana, Lucida Sans Unicode, Lucida Grande, calibri, arial, serif; letter-spacing:0.1em; margin: 5px auto; line-height: 145%; font-size: 14pt; text-decoration:none; } h1 { color: #000000; font-family: "Trebuchet MS", "Trebuchet MS", Verdana, Lucida Sans Unicode, Lucida Grande, calibri, arial, serif; letter-spacing:0.1em; margin: 5px auto; line-height: 145%; font-size: 16pt; text-decoration:none; } <!-- TD{font-family: verdana; font-size: 14px;} ---> </STYLE> <input type="hidden" name="a_add" value="A"> <table border="0" width="485" cellspacing="2" cellpadding="5" table style="background-color: CFD7FD;-moz-border-radius: 15px; border-radius: 15px;"><tr><td colspan="4" align="center"><h1>Life Insurance Quotes In 60 Seconds</h1></td></tr></font> <tr> <td colspan="4"><img src="http://www.lifeinsurancequotesx.co.uk/personal-details.png"><hr></td> </tr> <tr> <td width="110">Title</td> <td width="130"><select class="input-select" name="x_C1Title"><option value=''>-- Select--</option><option value="Miss">Miss</option><option value="Mr">Mr</option><option value="Mrs">Mrs</option><option value="Ms">Ms</option></select></td> <td width="110"></td> <td width="130"></td> </tr> <tr> <td>First Name</td> <td><input type="text" name="x_C1Forename" class="input-text"></td> <td align="right">Last Name</td> <td><input type="text" name="x_C1Surname" class="input-text"></td> </tr> <tr> <td>Date of birth</td> <td colspan="3"><select name="x_C1DOB_day" class="input-select" style="width:53px;"> <option value="">Day</option> <option value="01" >01</option> <option value="02" >02</option> <option value="03" >03</option> <option value="04" >04</option> <option value="05" >05</option> <option value="06" >06</option> <option value="07" >07</option> <option value="08" >08</option> <option value="09" >09</option> <option value="10" >10</option> <option value="11" >11</option> <option value="12" >12</option> <option value="13" >13</option> <option value="14" >14</option> <option value="15" >15</option> <option value="16" >16</option> <option value="17" >17</option> <option value="18" >18</option> <option value="19" >19</option> <option value="20" >20</option> <option value="21" >21</option> <option value="22" >22</option> <option value="23" >23</option> <option value="24" >24</option> <option value="25" >25</option> <option value="26" >26</option> <option value="27" >27</option> <option value="28" >28</option> <option value="29" >29</option> <option value="30" >30</option> <option value="31" >31</option> </select> <select name="x_C1DOB_month" class="input-select" style="width:80px;"> <option value="">Month</option> <option value="01" >Jan</option> <option value="02" >Feb</option> <option value="03" >Mar</option> <option value="04" >Apr</option> <option value="05" >May</option> <option value="06" >Jun</option> <option value="07" >Jul</option> <option value="08" >Aug</option> <option value="09" >Sep</option> <option value="10" >Oct</option> <option value="11" >Nov</option> <option value="12" >Dec</option> </select> <select class="input-select" name="x_C1DOB_year" style="width:55px;"> <option value="">Year</option> <option value=2000 >2000</option> <option value=1999 >1999</option> <option value=1998 >1998</option> <option value=1997 >1997</option> <option value=1996 >1996</option> <option value=1995 >1995</option> <option value=1994 >1994</option> <option value=1993 >1993</option> <option value=1992 >1992</option> <option value=1991 >1991</option> <option value=1990 >1990</option> <option value=1989 >1989</option> <option value=1988 >1988</option> <option value=1987 >1987</option> <option value=1986 >1986</option> <option value=1985 >1985</option> <option value=1984 >1984</option> <option value=1983 >1983</option> <option value=1982 >1982</option> <option value=1981 >1981</option> <option value=1980 >1980</option> <option value=1979 >1979</option> <option value=1978 >1978</option> <option value=1977 >1977</option> <option value=1976 >1976</option> <option value=1975>1975</option> <option value=1974 >1974</option> <option value=1973 >1973</option> <option value=1972 >1972</option> <option value=1971 >1971</option> <option value=1970 >1970</option> <option value=1969 >1969</option> <option value=1968 >1968</option> <option value=1967 >1967</option> <option value=1966 >1966</option> <option value=1965 >1965</option> <option value=1964 >1964</option> <option value=1963 >1963</option> <option value=1962 >1962</option> <option value=1961 >1961</option> <option value=1960 >1960</option> <option value=1959 >1959</option> <option value=1958 >1958</option> <option value=1957 >1957</option> <option value=1956 >1956</option> <option value=1955 >1955</option> <option value=1954 >1954</option> <option value=1953 >1953</option> <option value=1952 >1952</option> <option value=1951 >1951</option> <option value=1950 >1950</option> <option value=1949 >1949</option> <option value=1948 >1948</option> <option value=1947 >1947</option> <option value=1946 >1946</option> <option value=1945 >1945</option> <option value=1944 >1944</option> <option value=1943 >1943</option> <option value=1942 >1942</option> <option value=1941 >1941</option> <option value=1940 >1940</option> <option value=1939 >1939</option> <option value=1938 >1938</option> <option value=1937 >1937</option> <option value=1936 >1936</option> <option value=1935 >1935</option> <option value=1934 >1934</option> <option value=1933 >1933</option> <option value=1932 >1932</option> <option value=1931 >1931</option> <option value=1930 >1930</option> <option value=1929 >1929</option> <option value=1928 >1928</option> <option value=1927 >1927</option> <option value=1926 >1926</option> <option value=1925 >1925</option> <option value=1924 >1924</option> <option value=1923 >1923</option> <option value=1922 >1922</option> <option value=1921 >1921</option> <option value=1920 >1920</option> <option value=1919 >1919</option> <option value=1918 >1918</option> <option value=1917 >1917</option> <option value=1916 >1916</option> <option value=1915 >1915</option> <option value=1914 >1914</option> <option value=1913 >1913</option> <option value=1912 >1912</option> <option value=1911 >1911</option> <option value=1910 >1910</option> <option value=1909 >1909</option> <option value=1908 >1908</option> <option value=1907 >1907</option> <option value=1906 >1906</option> <option value=1905 >1905</option> <option value=1904 >1904</option> <option value=1903 >1903</option> <option value=1902 >1902</option> <option value=1901 >1901</option> <option value=1900 >1900</option> </select> </td> </tr> <tr> <td colspan="4" align="left">Do you smoke? <input type="radio" name="x_C1Smoker" value="No">No <input type="radio" name="x_C1Smoker" value="Yes">Yes </td> </tr> <tr> <td colspan="4"><img src="http://www.lifeinsurancequotesx.co.uk/contact-details.png"><hr></td> </tr> <tr> <td>Email address</td> <td><input type="text" name="x_C1Email" class="input-text"></td> <td align="right">Home phone</td> <td><input type="text" name="x_C1HomeTel" class="input-text"></td> </tr> <tr> <td>Work phone</td> <td><input type="text" name="x_C1WorkTel" class="input-text"></td> <td align="right">Mobile</td> <td><input type="text" name="x_C1MobilePhoneNo" class="input-text"></td> </tr> <tr> <td colspan="4" align="left">Is this a joint application? <script> function fieldsApp2(_obj) { if (_obj.value == 'Yes') { document.getElementById('partner_info').style.display = ''; } else { document.getElementById('partner_info').style.display = 'none'; } } </script> <input type="radio" name="x_Joint" value="No" onClick="javascript:fieldsApp2(this);">No <input type="radio" name="x_Joint" value="Yes" onClick="javascript:fieldsApp2(this);">Yes </td> </tr> <tbody id="partner_info" style="display:none;"> <tr> <td>#2 Title</td> <td><select class="input-select" name="x_C2Title"><option value=''>-- Select--</option><option value="Miss">Miss</option><option value="Mr">Mr</option><option value="Mrs">Mrs</option><option value="Ms">Ms</option></select></td> </tr> <tr> <td align="right">#2 First Name</td> <td><input type="text" name="x_C2Forename" class="input-text"></td> <td>#2 Last Name</td> <td><input type="text" name="x_C2Surname" class="input-text"></td> </tr> <tr> <td>#2 Date of birth</td> <td colspan="3"><select name="x_C2DOB_day" class="input-select" style="width:50px;"> <option value="">Day</option> <option value="01" >01</option> <option value="02" >02</option> <option value="03" >03</option> <option value="04" >04</option> <option value="05" >05</option> <option value="06" >06</option> <option value="07" >07</option> <option value="08" >08</option> <option value="09" >09</option> <option value="10" >10</option> <option value="11" >11</option> <option value="12" >12</option> <option value="13" >13</option> <option value="14" >14</option> <option value="15" >15</option> <option value="16" >16</option> <option value="17" >17</option> <option value="18" >18</option> <option value="19" >19</option> <option value="20" >20</option> <option value="21" >21</option> <option value="22" >22</option> <option value="23" >23</option> <option value="24" >24</option> <option value="25" >25</option> <option value="26" >26</option> <option value="27" >27</option> <option value="28" >28</option> <option value="29" >29</option> <option value="30" >30</option> <option value="31" >31</option> </select> <select name="x_C2DOB_month" class="input-select" style="width:60px;"> <option value="">Month</option> <option value="01" >Jan</option> <option value="02" >Feb</option> <option value="03" >Mar</option> <option value="04" >Apr</option> <option value="05" >May</option> <option value="06" >Jun</option> <option value="07" >Jul</option> <option value="08" >Aug</option> <option value="09" >Sep</option> <option value="10" >Oct</option> <option value="11" >Nov</option> <option value="12" >Dec</option> </select> <select class="input-select" name="x_C2DOB_year" style="width:55px;"> <option value="">Year</option> <option value=2000 >2000</option> <option value=1999 >1999</option> <option value=1998 >1998</option> <option value=1997 >1997</option> <option value=1996 >1996</option> <option value=1995 >1995</option> <option value=1994 >1994</option> <option value=1993 >1993</option> <option value=1992 >1992</option> <option value=1991 >1991</option> <option value=1990 >1990</option> <option value=1989 >1989</option> <option value=1988 >1988</option> <option value=1987 >1987</option> <option value=1986 >1986</option> <option value=1985 >1985</option> <option value=1984 >1984</option> <option value=1983 >1983</option> <option value=1982 >1982</option> <option value=1981 >1981</option> <option value=1980 >1980</option> <option value=1979 >1979</option> <option value=1978 >1978</option> <option value=1977 >1977</option> <option value=1976 >1976</option> <option value=1975>1975</option> <option value=1974 >1974</option> <option value=1973 >1973</option> <option value=1972 >1972</option> <option value=1971 >1971</option> <option value=1970 >1970</option> <option value=1969 >1969</option> <option value=1968 >1968</option> <option value=1967 >1967</option> <option value=1966 >1966</option> <option value=1965 >1965</option> <option value=1964 >1964</option> <option value=1963 >1963</option> <option value=1962 >1962</option> <option value=1961 >1961</option> <option value=1960 >1960</option> <option value=1959 >1959</option> <option value=1958 >1958</option> <option value=1957 >1957</option> <option value=1956 >1956</option> <option value=1955 >1955</option> <option value=1954 >1954</option> <option value=1953 >1953</option> <option value=1952 >1952</option> <option value=1951 >1951</option> <option value=1950 >1950</option> <option value=1949 >1949</option> <option value=1948 >1948</option> <option value=1947 >1947</option> <option value=1946 >1946</option> <option value=1945 >1945</option> <option value=1944 >1944</option> <option value=1943 >1943</option> <option value=1942 >1942</option> <option value=1941 >1941</option> <option value=1940 >1940</option> <option value=1939 >1939</option> <option value=1938 >1938</option> <option value=1937 >1937</option> <option value=1936 >1936</option> <option value=1935 >1935</option> <option value=1934 >1934</option> <option value=1933 >1933</option> <option value=1932 >1932</option> <option value=1931 >1931</option> <option value=1930 >1930</option> <option value=1929 >1929</option> <option value=1928 >1928</option> <option value=1927 >1927</option> <option value=1926 >1926</option> <option value=1925 >1925</option> <option value=1924 >1924</option> <option value=1923 >1923</option> <option value=1922 >1922</option> <option value=1921 >1921</option> <option value=1920 >1920</option> <option value=1919 >1919</option> <option value=1918 >1918</option> <option value=1917 >1917</option> <option value=1916 >1916</option> <option value=1915 >1915</option> <option value=1914 >1914</option> <option value=1913 >1913</option> <option value=1912 >1912</option> <option value=1911 >1911</option> <option value=1910 >1910</option> <option value=1909 >1909</option> <option value=1908 >1908</option> <option value=1907 >1907</option> <option value=1906 >1906</option> <option value=1905 >1905</option> <option value=1904 >1904</option> <option value=1903 >1903</option> <option value=1902 >1902</option> <option value=1901 >1901</option> <option value=1900 >1900</option> </select> </td> </tr> <tr> <td colspan="2" align="right">#2 Do you smoke?</td> <td colspan="2" align="left"><input type="radio" name="x_C2Smoker" value="No">No <input type="radio" name="x_C2Smoker" value="Yes">Yes </td> </tr> </tbody> <tr> <td>House Number</td> <td><input type="text" name="x_C1HouseNumber" class="input-text"></td> <td align="right">House Name</td> <td><input type="text" name="x_C1HouseFlatName" class="input-text" value=""></td> </tr> <tr> <td>Street</td> <td><input type="text" name="x_C1Street" class="input-text"></td> <td align="right">Area</td> <td><input type="text" name="x_C1Area" class="input-text"></td> </tr> <tr> <tr> <td>Town</td> <td><input type="text" name="x_C1Town" class="input-text"></td> <td align="right">County</td> <td><input type="text" name="x_C1County" class="input-text"></td> </tr> <tr> <td>Postcode</td> <td><input type="text" name="x_C1Postcode" class="input-text"></td> </tr> <td colspan="4"><img src="http://www.lifeinsurancequotesx.co.uk/insurance-details.png"><hr></td> </tr> <tr> <td>Insure Type</td> <td><select class="input-select" name="x_InsuranceType"> <option value=''>-- Select--</option> <option value="Life Insurance">Life Insurance only</option> <option value="Life Insurance and Critical Illness">Life insurance + Critical illness</option> </select> <img src="http://www.lifeinsurancequotesx.co.uk/question-mark-3.png" alt="question mark" class="alignright" title="Critical illness pays out if the policy holder is diagnosed with a critical illness that's listed within the policy. Don't know? We only use this information to help give you an appropriate quote, your choice now isn't permanent."/></td> <td align="right">Cover Type</td> <td><nobr><select class="input-select" name="x_CoverType"> <option value=''>-- Select--</option> <option value="Level Cover">Level Cover</option> <option value="Decreasing Cover">Decreasing Cover</option> </select> <img src="http://www.lifeinsurancequotesx.co.uk/question-mark-3.png" alt="question mark" class="alignright" title="Level Term insurance is the classic life insurance paying out if the insured dies within the relevant term. Deacreasing Cover charges less as your policy goes on since it's typically designed so if you die your remaining debt owed on mortages are paid off. Don't know? This option is only designed to be a guide for your quote, you can easily change your choice later."/></nobr> </td> </tr> <tr> <td>Time Period?</td> <td><nobr><select class="input-select" name="x_CoverYears"> <option value=''>-- Select--</option> <option value="1 year">1 year</option> <option value="2 years">2 years</option> <option value="3 years">3 years</option> <option value="4 years">4 years</option> <option value="5 years">5 years</option> <option value="6 years">6 years</option> <option value="7 years">7 years</option> <option value="8 years">8 years</option> <option value="9 years">9 years</option> <option value="10 years">10 years</option> <option value="11 years">11 years</option> <option value="12 years">12 years</option> <option value="13 years">13 years</option> <option value="14 years">14 years</option> <option value="15 years">15 years</option> <option value="16 years">16 years</option> <option value="17 years">17 years</option> <option value="18 years">18 years</option> <option value="19 years">19 years</option> <option value="20 years">20 years</option> <option value="21 years">21 years</option> <option value="22 years">22 years</option> <option value="23 years">23 years</option> <option value="24 years">24 years</option> <option value="25 years">25 years</option> <option value="26 years">26 years</option> <option value="27 years">27 years</option> <option value="28 years">28 years</option> <option value="29 years">29 years</option> <option value="30 years">30 years</option> <option value="31 years">31 years</option> <option value="32 years">32 years</option> <option value="33 years">33 years</option> <option value="34 years">34 years</option> <option value="35 years">35 years</option> <option value="36 years">36 years</option> <option value="37 years">37 years</option> <option value="38 years">38 years</option> <option value="39 years">39 years</option> <option value="40 years">40 years</option> <option value="41 years">41 years</option> <option value="42 years">42 years</option> <option value="43 years">43 years</option> <option value="44 years">44 years</option> <option value="45 years">45 years</option> <option value="46 years">46 years</option> <option value="47 years">47 years</option> <option value="48 years">48 years</option> <option value="49 years">49 years</option> <option value="50 years">50 years</option> </select> <img src="http://www.lifeinsurancequotesx.co.uk/question-mark-3.png" alt="question mark" class="alignright" title="Select the length that you require the cover to run for. Don't know? We only use this information to help give you an appropriate quote, your choice now isn't permanent."/></nobr> </td> <td align="right">Amount</td> <td><nobr><select class="input-select" name="x_CoverAmount"> <option value=''>-- Select--</option> <option value="20000">£20,000</option> <option value="25000">£25,000</option> <option value="30000">£30,000</option> <option value="35000">£35,000</option> <option value="40000">£40,000</option> <option value="45000">£45,000</option> <option value="50000">£50,000</option> <option value="55000">£55,000</option> <option value="60000">£60,000</option> <option value="65000">£65,000</option> <option value="70000">£70,000</option> <option value="75000">£75,000</option> <option value="80000">£80,000</option> <option value="85000">£85,000</option> <option value="90000">£90,000</option> <option value="95000">£95,000</option> <option value="100000">£100,000</option> <option value="105000">£105,000</option> <option value="110000">£110,000</option> <option value="115000">£115,000</option> <option value="120000">£120,000</option> <option value="125000">£125,000</option> <option value="130000">£130,000</option> <option value="135000">£135,000</option> <option value="140000">£140,000</option> <option value="145000">£145,000</option> <option value="150000">£150,000</option> <option value="155000">£155,000</option> <option value="160000">£160,000</option> <option value="165000">£165,000</option> <option value="170000">£170,000</option> <option value="175000">£175,000</option> <option value="180000">£180,000</option> <option value="185000">£185,000</option> <option value="190000">£190,000</option> <option value="195000">£195,000</option> <option value="200000">£200,000</option> <option value="205000">£205,000</option> <option value="210000">£210,000</option> <option value="215000">£215,000</option> <option value="220000">£220,000</option> <option value="225000">£225,000</option> <option value="230000">£230,000</option> <option value="235000">£235,000</option> <option value="240000">£240,000</option> <option value="245000">£245,000</option> <option value="250000">£250,000</option> <option value="255000">£255,000</option> <option value="260000">£260,000</option> <option value="265000">£265,000</option> <option value="270000">£270,000</option> <option value="275000">£275,000</option> <option value="280000">£280,000</option> <option value="285000">£285,000</option> <option value="290000">£290,000</option> <option value="295000">£295,000</option> <option value="300000">£300,000</option> <option value="325000">£325,000</option> <option value="350000">£350,000</option> <option value="375000">£375,000</option> <option value="400000">£400,000</option> <option value="425000">£425,000</option> <option value="450000">£450,000</option> <option value="475000">£475,000</option> <option value="500000">£500,000</option> <option value="550000">£550,000</option> <option value="600000">£600,000</option> <option value="650000">£650,000</option> <option value="700000">£700,000</option> <option value="750000">£750,000</option> <option value="800000">£800,000</option> <option value="850000">£850,000</option> <option value="900000">£900,000</option> <option value="950000">£950,000</option> <option value="1000000">£1,000,000</option> <option value="1100000">£1,100,000</option> <option value="1200000">£1,200,000</option> <option value="1300000">£1,300,000</option> <option value="1400000">£1,400,000</option> <option value="1500000">£1,500,000</option> </select> <img src="http://www.lifeinsurancequotesx.co.uk/question-mark-3.png" alt="question mark" class="alignright" title="Life insurance is primarily used to replace income or repay debts in the event of the policy holders death. The figures here represent a lump sum payout in the event of the policy holders death. Consider your dependants and/or debts. Don't know? We only use this information to help give you an appropriate quote, your choice now isn't permanent."/></nobr> </td> </tr> <tr> <td>Premium Type</td> <td><select class="input-select" name="x_PremiumType"> <option value=''>-- Select--</option> <option value="Guaranteed Premiums">Guaranteed Premiums</option> <option value="Reviewable Premiums">Reviewable Premiums</option> </select> <img src="http://www.lifeinsurancequotesx.co.uk/question-mark-3.png" alt="question mark" class="alignright" title="Guaranteed premiums ensure your insurance company will never increase your premium for the duration of the policy term. Reviewable premiums allow your insurance company to review your policy cost. Don't know? We only use this information to help give you an appropriate quote, your choice now isn't permanent. "/> </td> </tr> </table> <p> <input type="hidden" name="IPAddress" value="<?php echo $_SERVER['REMOTE_ADDR'];?>"> <input type="hidden" name="keyword" value="<?php echo $keyword;?>"> <input name="submit" class="buttonclass" value=" " type="submit"/><br><br> <small><i>By clicking "Submit" you agree to be contacted by telephone or email by an FSA Authorised Advisor and confirm that you have read and agreed to our <a href="http://www.lifeinsurancequotesx.co.uk/terms-conditions/index.php?keyword=<?php echo ($_GET['keyword']); ?>"target="_parent">Terms & Conditions</a> and <a href="http://www.lifeinsurancequotesx.co.uk/privacy-policy/index.php?keyword=<?php echo ($_GET['keyword']); ?>"target="_parent">Privacy Policy</a> <br> <br> *The majority of life insurance policies will require no medical examination, however there maybe rare cases when a medical examination maybe required. <br><br> <img src="http://www.lifeinsurancequotesx.co.uk/data-protection-logo.png" ALIGN="top"/> <img src="http://www.lifeinsurancequotesx.co.uk/ico-logo.png" ALIGN="top"/> Proudly registered with the ICO. </i></small> </form> <?php } include($footer_file_name); ?> Thanks, Sam
  19. Thanks guys, plus ones all round. The only problem I have now is that IE shows square corners while Chrome shows rounded corners - any advice? Sam
  20. Don't ever be embarrassed about asking for help. Persistence + research + asking questions + action = success!
  21. Tips for links: - Make it a continual process - Get links from domains which match your site ie. sites ending in .co.uk - Don't waste your time posting on blogs/squidoo all day long, check out some decent services. - Learn about Google PR (remember this is done on a page basis not site) the higher the PR link the better. - Syndicate your content for the best links - If you want to rank understand you will need backlinks Unproven rumours - You need links from similar pages i.e. a link from a car site for a website about cars - This isn't true - Buying links will only cause trouble Again untrue you just need the right ones! - .EDU/.Gov/.ac.uk links are better Nope, untrue they are only better since generally they are well built sites with a high PR there domain extension has nothing to do with it. - You should only build "follow" links No, make it natural build nofollow links as well - Social media Personally, I've found social media as a very poor way to increase my rank. Tips for general SEO 1) Most website designers don't really do SEO since it's outside what your paying them for. You need to focus on "keywords" (phrases people Google) check out: https://adwords.google.com/o/Targeting/Explorer?__u=1000000000&__c=1000000000&ideaRequestType=KEYWORD_IDEAS#search.none (You will need a gmail account to sign in). Tick the "exact match" box on the left hand side and enter a phrase it will tell you how many searches are performed a month, choose one keyword per page and make sure it's in your url, title, description and keyword tags, in header tags, image name/alt image, anchor text, bolded, italic and underlined. And when building backlinks get the anchor text as the keyword which you want to rank for. Hope that helps and remember the only way you will find it if something works or not is personally testing it. 2) Get your main keyword in your domain address! This is a mega benefit in seo! 3) The older your domain the better you'll rank. 4) The more pages/content the more your site will be found. 5) Make sure your host is based in the UK! 6) Make sure your domain address ends in .co.uk 7) Post your site here for more suggestions! Not everyone will agree with what I've said but it all comes from personal testing, a lot of people "follow the crowd" but never test to see what actually works. Google is forever evolving and the truth is no one really full knows the algorthym so we must test. Sam
  22. Hey guys, I've got some serious problems with my containers and alignment they're all over the place! Could you take a look at the following images and give me some advice! You can access my site and look at my stylesheet - here. Looking forward to hearing back, Sam Notes: 1) I am using Wordpress 2) The form is in an iFrame
  23. If there are decent keywords whether or not its "too niche" doesn't matter. Sam

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.