mattster 195 Practically a Master Poster Featured Poster

As in you want to know how to customise the theme?

Any features/customisations are downloaded, ie a template has a light or dark option, so it will have a light.css and a dark.css, all you have to do is chang a few bits of code.

Most of the people that really use html templates are coders and designers, so they expect you to be able to code if you want to modify anything.

;)

mattster 195 Practically a Master Poster Featured Poster

Supposedly, a premium html template is a professionally designed template that is bursting with features, whereas free ones are no where near the standard.

You can modify them to look different, ie themes or colours for instance, or as @karlcunanan said, a backend setup? Or maybe even improving a theme?

mattster 195 Practically a Master Poster Featured Poster

TEA!!!!!

Two sugars mind ;P

mattster 195 Practically a Master Poster Featured Poster

Your code above doesn't actually include anything on your sessions? Theres just session_start()? because my guess at the minuete is that there is an error either writing into your session or echoing out of it. I need to see everything concerning the sessions to help on this.

mattster 195 Practically a Master Poster Featured Poster

Just as a quick note I believe that your HTML locating the jQuery file should go as (Using the http:// to locate the JQuery file:

<script src"http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>

Aside from that (and actually answering your question), we are still clueless to why this is happening, so I suggest testing to diagnose the error by:

  1. echo $_POST['name']
  2. mysql_query() or die(mysql_error());

1 so we can see exactly what we are trying to insert and 2 so we can see if mysql has an error message that can solve the problem.

Please reply with what the results are so I can help, sorry to be a pain ;)

mattster 195 Practically a Master Poster Featured Poster

I've had a go at fixing it, and Ive found the solution! try this css:

#nav a {
    display: block;
    color: #474747;
    text-transform: none;
    font-size: 13px;
    text-decoration: none;
    background: none;
    padding-top: 15px;
    height: 20px;
    padding-bottom: 0px;
    padding-right: 15px;
    padding-left: 15px;
}
#nav {
    list-style: none;
    text-decoration: bold;
    margin-top: 30px;
    padding-right: 20px;
    letter-spacing: .5px;
    font-family: Geneva, Sans-Serif;
    font-size: 13px;
    background: none;
    float: right;
}

Hope it works!!

LastMitch commented: Nice Work! +9
mattster 195 Practically a Master Poster Featured Poster

I think you've got a problem with the div's, as they are set to a width of 1300px, which extends off the page.. try using 1000px instead and then move the div's around abit (ie facts should be set to apprpx. top: 240px, right:600px; etc.

mattster