Results 1 to 9 of 9

Thread: Make my site work

  1. #1
    lazy student nvening's Avatar
    Join Date
    Jan 2005
    Location
    London
    Posts
    4,656
    Thanks
    196
    Thanked
    31 times in 30 posts

    Make my site work

    Hi, i was lazy and made a site in photoshop and you can see it here:

    http://tqc.gkellypieandmash.co.uk

    Now, for a question, how do i type in on the main part of the page?

    sos foor the n00b questions.
    (\__/)
    (='.'=)
    (")_(")

  2. #2
    Flak Monkey! Dorza's Avatar
    Join Date
    Jul 2003
    Location
    UK - South Wales
    Posts
    1,762
    Thanks
    34
    Thanked
    17 times in 15 posts
    • Dorza's system
      • Motherboard:
      • Asus P5B Deluxe - WiFi
      • CPU:
      • Q6600 @ 3.06Ghz
      • Memory:
      • 2GB Crucial
      • Storage:
      • 500GB Samsung SpinPoint
      • Graphics card(s):
      • Geforce 9600GT
      • PSU:
      • Cosair HX520W
      • Case:
      • LianLi something something or other
      • Monitor(s):
      • Eizo FlexScan S1910 (1280*1024)
      • Internet:
      • 2mb Virgin (when they want to give me that: else 1mb)
    Code:
    <tr>
    		<td>
    			<img src="images/tqccut_07.gif" width="9" height="39" alt=""></td>
    		<td rowspan="7" valign="top">Type your main body text here
    			
    		<td>
    			<img src="images/spacer.gif" width="1" height="39" alt=""></td>
    	</tr>
    Look for those lines (just find the image names like tqccut_07.gif). Add your main body text where ive typed in red. The blue part is needed in order to align the text to the top of the table cell. Note that this does not comply with current web standards at the very least add a doc type definition. Also using tables for layout is messy in my opinion, if you don't care about those things carry on with what u have.

    Dorza
    Last edited by Dorza; 06-10-2005 at 10:11 PM.

  3. #3
    Time for Walkies... Atomic's Avatar
    Join Date
    Apr 2004
    Location
    Norfolk, UK
    Posts
    1,959
    Thanks
    0
    Thanked
    0 times in 0 posts
    You could build that in CSS with way less code...

  4. #4
    lazy student nvening's Avatar
    Join Date
    Jan 2005
    Location
    London
    Posts
    4,656
    Thanks
    196
    Thanked
    31 times in 30 posts
    yes, but that would require knowing css, i just need a quick fix thanks, ill give that a go.

    And, who need web standards when we have internet explorer?
    Last edited by nvening; 07-10-2005 at 06:50 PM.
    (\__/)
    (='.'=)
    (")_(")

  5. #5
    Ah, Mrs. Peel! mike_w's Avatar
    Join Date
    Oct 2003
    Location
    Hertfordshire, England
    Posts
    3,326
    Thanks
    3
    Thanked
    9 times in 7 posts
    Quote Originally Posted by nvening
    And, who need web standards when we have internet explorer?
    People that don't use Internet Explorer. People on Linux. People using mobile devices to access the internet. People that are disabled, so it makes it easier for them to still access the internet.
    "Well, there was your Uncle Tiberius who died wrapped in cabbage leaves but we assumed that was a freak accident."

  6. #6
    Senior Member
    Join Date
    Jul 2003
    Posts
    1,066
    Thanks
    1
    Thanked
    0 times in 0 posts
    Go on - Learn CSS

    Asides from browser quirks - I find it a lot easier to work with than tables.

  7. #7
    Senior Member
    Join Date
    Apr 2005
    Location
    Bournemouth, Dorset
    Posts
    1,631
    Thanks
    13
    Thanked
    2 times in 2 posts
    if your using Dreamweaver then it basically does the CSS coding for you. Just tell it what you want each style to look like and there you go!

    iam currently designing a site for my alevel computing project using css and php can be see here ( http://ramedge.siteburg.com/com/index.php ) theres alot to do to it but i would like to know what the best way for designing pages is?

    cheers

  8. #8
    Ah, Mrs. Peel! mike_w's Avatar
    Join Date
    Oct 2003
    Location
    Hertfordshire, England
    Posts
    3,326
    Thanks
    3
    Thanked
    9 times in 7 posts
    Quote Originally Posted by Ramedge
    iam currently designing a site for my alevel computing project using css and php can be see here ( -top: thin dotted #333333;
    border-right: thin dotted #333333;
    border-bottom: thin dotted #333333;
    border-lefthttp://ramedge.siteburg.com/com/index.php ) theres alot to do to it but i would like to know what the best way for designing pages is?
    Just a couple of comments: first of all, there's a lot of white space on there, especially with the Google ads banner taking up so much room at the top - it might be better if you could add it in vertically (although I don't known the T&C of the hosting). You might also want to lop the top of 'edge Design' banner, seeing as the top two thirds seems to serve no purpose. Also, the text on each page is too small. Although people can zoom in, you should really make it a readable size by default.

    Finally, I think you should add a Doctype (i.e. HTML4, XHTML1), and make sure the page is valid.

    Edit: Another thing I just noticed - some of your CSS seems to be a little long winded, specifically with borders. It is better to try and cut down on the size of the file as much as possible. You have:

    Code:
    border-top: thin dotted #333333;
    	border-right: thin dotted #333333;
    	border-bottom: thin dotted #333333;
    	border-left: thin dotted #333333;
    When this will suffice:

    Code:
    border: thin dotted #333333;
    (I think!)
    Last edited by mike_w; 10-10-2005 at 10:16 PM.
    "Well, there was your Uncle Tiberius who died wrapped in cabbage leaves but we assumed that was a freak accident."

  9. #9
    Senior Member
    Join Date
    Jul 2003
    Posts
    1,066
    Thanks
    1
    Thanked
    0 times in 0 posts
    Tip - When editing your site have at least Firefox and IE open at the same time when previewing so you can spot cross browser difficulties early on.

    At the moment the site looks very different on these two browsers and ideally you want them to be identical. Naturally in the real world this is very hard to achieve so there is usually a trade off between practicality and continuity.

    It's not big deal as the site "works" in both browsers at the moment however I'm sure you'd rather have the copyright info hidden away at the bottom of the page in all cases. Cross browser compatibility can really be a serious pain the arse.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. What do you make of this email?
    By myth in forum General Discussion
    Replies: 39
    Last Post: 24-02-2005, 08:27 AM
  2. Things that make it all worth while...
    By Devilbod in forum Automotive
    Replies: 3
    Last Post: 17-06-2004, 12:19 PM
  3. Do US playstation games work on a English PS2?
    By Jimmy Little in forum Gaming
    Replies: 7
    Last Post: 13-05-2004, 02:38 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •