Things i need to know

This is a discussion on "Things i need to know" within the Web Page Design section. This forum, and the thread "Things i need to know are both part of the Design Your Website category.



Go Back   Webforumz.com > Main Forums > Design Your Website > Web Page Design

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Nov 9th, 2007, 14:33
Reputable Member
Join Date: Sep 2007
Location: UK
Age: 42
Posts: 130
Thanks: 0
Thanked 0 Times in 0 Posts
Things i need to know

okay while finishing off this website i have been doing on and off for the last month, big man has now gone over it and wants some things to be slightly changed but i don't know how to do them. And some problems that im having with HTML Strict. Used to transitional the easy days...

1) <a href="#"><img src="x" border="0"></a>
This are some little alternate navigation buttons at bottom of content and if i don't use 'border="0"' i get a stroke around the image. Border is not a supported attribute, so what should i use instead?

2) Im using tables to display data, because i will intergrate a control panel later for which the big man can edit etc. I need the text to align top in the css? again attribute is not supported anymore.

3) <label for"x"> <span class="xx">Name</span></label>
<input etc>

Why do i get lots of errors for doing this? :S

Been doing loads of research and answered alot of my own questions! but i just can't find anything on these that is working for me.

All files etc can be found at http://www.wasteofinc.co.uk/jimi/home.html

Site is mostly working, changing a few things from my last thread still at this moment.
Reply With Quote

  #2 (permalink)  
Old Nov 9th, 2007, 14:46
c010depunkk's Avatar
SuperMember

SuperMember
Join Date: Apr 2007
Location: Willich, Germany
Age: 20
Posts: 593
Blog Entries: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to c010depunkk
Re: Things i need to know

1. "<img src="x" />" needs a closing slash. You can style the image border using CSS:
HTML: Select all
img { border:0; }
2. Not sure. I've never done much with CSS and tables.

3. "<input etc />" also needs a closing slash.
Reply With Quote
  #3 (permalink)  
Old Nov 9th, 2007, 14:59
karinne's Avatar
SuperMember

SuperMember
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Things i need to know

Quote:
Originally Posted by jtyoungs View Post
1) <a href="#"><img src="x" border="0"></a>
This are some little alternate navigation buttons at bottom of content and if i don't use 'border="0"' i get a stroke around the image. Border is not a supported attribute, so what should i use instead?
Use CSS

Code: Select all
img, a img {
    border: 0;
}
Quote:
Originally Posted by jtyoungs View Post
2) Im using tables to display data, because i will intergrate a control panel later for which the big man can edit etc. I need the text to align top in the css? again attribute is not supported anymore.
Use CSS

Code: Select all
td {
    vertical-align: top;
}
Quote:
Originally Posted by jtyoungs View Post
3) <label for"x"> <span class="xx">Name</span></label>
<input etc>
This thread might help

[CSS] Customize your form with CSS
Reply With Quote
  #4 (permalink)  
Old Nov 9th, 2007, 14:59
karinne's Avatar
SuperMember

SuperMember
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Things i need to know

Quote:
Originally Posted by c010depunkk View Post
1. "<img src="x" />" needs a closing slash. You can style the image border using CSS:
HTML: Select all
img { border:0; }
3. "<input etc />" also needs a closing slash.
Not with a HTML Strict doctype
Reply With Quote
  #5 (permalink)  
Old Nov 9th, 2007, 15:47
c010depunkk's Avatar
SuperMember

SuperMember
Join Date: Apr 2007
Location: Willich, Germany
Age: 20
Posts: 593
Blog Entries: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to c010depunkk
Re: Things i need to know

ök
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Mixing things... jubamad Introduce Yourself 4 Apr 5th, 2008 09:39
things you do when your bored CloudedVision Webforumz Cafe 20 Apr 1st, 2008 22:37
Questionnaire - things to ask Aso Website Planning 0 Feb 20th, 2008 18:31
Few things... timmytots Web Page Design 12 Nov 29th, 2005 00:20
Two things...please help! timmytots Flash & Multimedia Forum 0 Nov 14th, 2005 17:38


All times are GMT. The time now is 23:37.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43