Web Design Forum: Aaron - Viewing Profile - Web Design Forum

Jump to content

WDF
WDF Premium Memberships Reseller Hosting

Aaron's Profile User Rating: *****

Reputation: 1 Neutral
Group:
Members
Active Posts:
168 (0.18 per day)
Joined:
02-November 09
Profile Views:
5,593
Last Active:
User is offline Jan 30 2012 11:45 AM
Currently:
Offline

My Information

Member Title:
Dedicated Member
Age:
22 years old
Birthday:
October 4, 1989
Gender:
Male Male
Location:
Leeds
Interests:
Graphic design, photography, cars, computers, sitting down, particular genres of music

Contact Information

E-mail:
Click here to e-mail me

Users Experience

Experience:
Beginner
Area of Expertise:
Web Designer

Topics I've Started

  1. My new one page portfolio

    19 January 2012 - 03:02 PM

    Hi Guys,

    Just tweaking my little 1 page portfolio website. Let me know what you think!

    any advice on what i can do with the footer because i think it looks naff lol.

    thanks guys

    www.ko-graphics.co.uk
  2. Css stopped my php form from working?

    31 August 2011 - 09:29 PM

    hi guys, Have a contact for i use quite often. It work just fine before i styled it, so i was wondering if anybody could see anything wrong. Thanks.

    Mail.php reads


    <?php

    $subject = "Real Motoring Tuition | Website Contact Form Submission";

    $name = $_POST['f_name'];
    $postcode = $_POST['f_postcode'];
    $email = $_POST['f_email'];
    $number = $_POST['f_number'];
    $message = $_POST['f_message'];

    $message1 = "From: " . $name . "\n\n" . "Contact number: " . $number . "\n\n" . "postcode: " . $postcode . "\n\n" . "email: " . $email . "\n\n" . "Message: " . $message;

    $from = "From: " . $_POST['f_name'];



    ini_set("sendmail_from", "myemail@.co.uk ");





    mail ( "myemail@.co.uk", $subject, $message1, $from );
    header("Location: ../sent.php?name=" . $name ."");
    ?>



    Heres the Contact form


    <div id="contact_form">
    <form action="mail.php" method="post">
    <table width="" border="0" cellspacing="0" cellpadding="10">
    <tr>
    <td class="contact-text">Full Name</td>
    <td><input name="f_name" type="text" class="contact_field" /></td>
    </tr>
    <tr>
    <td class="contact-text">Postcode</td>
    <td><input name="f_postcode" type="text" class="contact_field" /></td>
    </tr>
    <tr>
    <td class="contact-text">Email</td>
    <td><input name="f_email" type="text" class="contact_field" value="" /></td>
    </tr>
    <tr>
    <td class="contact-text">Phone Number</td>
    <td><input name="f_number" type="text" class="contact_field" value="" /></td>
    </tr>
    <tr>
    <td class="contact-text">Message</td>
    <td><textarea name="f_message" rows="6" class="contact_box"></textarea></td>
    </tr>
    <tr>
    <td></td>
    <td><input type="submit" class="send" value="Send" /></td>
    </tr>
    </table>
    </form>
    </div>



    the includes


    <?php include('includes/contact_form.php'); ?>


    and the css



    #contact_form {
    margin-top:0;
    margin-right:0;
    height:380px;
    width:465px;
    font: 18px Arial, Helvetica, sans-serif;

    }
    #contact_form tr {
    height: 15px;
    }
    .contact-text {
    width:140px;
    font-family: 16px/1.5em Arial, Helvetica, sans-serif;

    color:#fff;
    padding-top:0;
    }
    .contact_field {
    border: 1px solid #CCC;
    height: 30px;
    font: 14px/1.5em Arial, Helvetica, sans-serif;
    color: #333;
    padding: 5px;
    width: 270px;
    background-color:#fff;
    margin-top:0;
    margin-left:0;
    }
    .contact_box {
    border: 1px solid #CCC;
    height: 100px;
    font: 16px/1.5em Arial, Helvetica, sans-serif;

    color: #333;
    padding: 0;
    margin-top: 0;
    margin-left:0;
    width:280px;
    background-color:#fff;
    }
    .send {
    margin-top:-20px;
    margin-right:0px;
    height:25px;
    color:#000;
    font: 14px/1.5em Arial, Helvetica, sans-serif;
    float:right;
    background-color:#fff;
    background-color: rgba(255, 255, 255, 1);
    border:3px solid rgba(255, 255, 255, 0.5);
    border-bottom-left-radius:7px;
    -moz-border-radius-bottomleft:7px;
    border-bottom-right-radius:7px;
    -moz-border-radius-bottomright:7px;
    }




    Any help would be reeeeealy appreciated. thanks :)
  3. My clients website so far...

    24 August 2011 - 07:39 PM

    hi Guys, making this for a client and im about halfway through, the client loves the design so just wanted to know what you lot thought about it.

    both the finished pages (index & price pages) were validated until I put this image scroller in so if anyone can tell me what the errors are on about that would be a big help too :)

    cheers

    here is the link
  4. Creating subtitles underneath a navigation title

    21 August 2011 - 02:13 PM

    I am trying to create a navigation bar like in the image below and have got quite far on my own. I am trying to get subtitles underneath them but they seem to be messing quite badly with the layout.

    I have tried using breaks and p classes etc but there must be a way around this.

    here is my code so far.

    HTML:

    <div id="nav">
    <ul>
    <li class="first"><a href="index.php">HOME</a></li>
    <li><a href="prices.php">PRICES</a></li>
    <li><a href="questions.php">QUESTIONS</a></li>
    <li><a href="contact.php">CONTACT</a></li>
    </ul>
    </div>



    CSS:


    #nav {

    height:auto;
    width:auto;
    border: 1px solid #fff;
    float:left;
    margin-left:7px;
    background-color: rgba(255, 255, 255, 0.2);
    }


    #nav ul {
    margin-left: 0;
    padding-left: 0;
    display: inline;

    }

    #nav ul li {
    font:italic 1.5em Georgia, "Times New Roman", Times, serif;
    margin-left: 0;
    padding: 3px 15px;
    border-left: 1px solid #fff;
    list-style: none;
    display: inline;
    }


    #nav ul li.first {
    margin-left: 0;
    border-left: none;
    list-style: none;
    display: inline;
    }


    #nav li a {
    text-decoration:none;
    color:#000;
    }

    #nav li a:hover {
    text-decoration:none;
    color:#333;
    }
    b.nav-title {
    font:italic 0.3em Georgia, "Times New Roman", Times, serif;
    }


    thanks
  5. Changing a word/ sentence to one colour in a list

    20 August 2011 - 04:59 PM

    Hi Guys,

    Im trying to change the colour of a "subtitle" i have added to a list and i cant seem to do it.

    Here

    Its the bit in the 'Useful' box that reads "Pass Plus - Lower your insurance with us." i want the "lower your.." to be in white and much smaller.

    Im new to lists and still farting about trying to refine it :clapping:

    also if there is a way of bring the text up to align with the point on the arrow that would be awesome as ive kind of given up on that bit lol

Comments

Page 1 of 1
  1. Photo

    StereoHeart 

    04 Oct 2011 - 14:14
    happy birthday!
  2. Photo

    smoothonline 

    18 Dec 2009 - 11:27
    THANKS!
  3. Photo

    ScottyB 

    03 Dec 2009 - 15:53
    Get a gallery up homeslice! Show off ur designs :D
Page 1 of 1