Jump to content

new site template


thewooleymammoth

Recommended Posts

I don't really like the background. These repeating background images is kind of '90ies IMO. Choose another font than the default (Times New Roman).

 

I know it still says it is under construction, but the links need another formatting to stand out. There aren't any anchor tags yet, but there are no styles defined to change the way they look either. The paper edges need some work as well, especially the bottom as it just ends.

 

Code-wise I'd suggest you to move to a table less layout. It's not a very complicated layout and is therefore easily changed. If you need help with that you can post in the HTML/CSS forums.

 

Oh, and it's spelled "Copyright", not "Copywrite" ;)

Link to comment
Share on other sites

I don't really like the background. These repeating background images is kind of '90ies IMO. Choose another font than the default (Times New Roman).

 

I know it still says it is under construction, but the links need another formatting to stand out. There aren't any anchor tags yet, but there are no styles defined to change the way they look either. The paper edges need some work as well, especially the bottom as it just ends.

 

Code-wise I'd suggest you to move to a table less layout. It's not a very complicated layout and is therefore easily changed. If you need help with that you can post in the HTML/CSS forums.

 

Oh, and it's spelled "Copyright", not "Copywrite" ;)

 

 

whats the advantage of having a tableless layout?

Link to comment
Share on other sites

whats the advantage of having a tableless layout?

 

Semantic markup, cleaner code, easier to change, bandwidth usage reduction, etc.. It also has something to do with what is called "separation of concerns". In web design you'd be talking about three layers: HTML, CSS and Javascript which are content, presentation and behavior. If you use tables for laying out your code then you will have moved some presentation into the content layer.

Link to comment
Share on other sites

whats the advantage of having a tableless layout?

 

Semantic markup, cleaner code, easier to change, bandwidth usage reduction, etc.. It also has something to do with what is called "separation of concerns". In web design you'd be talking about three layers: HTML, CSS and Javascript which are content, presentation and behavior. If you use tables for laying out your code then you will have moved some presentation into the content layer.

 

i am strictly amature so ill explain the way i have it set up, hopefully you guys can tell me if its a horrible way of doing it.

 

tophalf.html

//top half of the html
<html>
<head>
<title>pagename</title>
</head>
<body> 
//everything to do with the coding goes here ex. table bg, size, width, exc...
<table>
  <tr>
   <td>
\\end of tophalf.html

 

 

bottomhalf.html

//bottum half of the html
  </td>
   </tr>
   <tr>
   <td>
   copyright VGhunters
  </td>
  </tr>
</table>
</html>
\\end of bottomhalf.html

 

then for actuall pages

 

<?php
include('tophalf.html');

echo"content goes here";

include('bottomhalf.html');
?>

 

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.