The Web Design Group

... Making the Web accessible to all.

Welcome Guest ( Log In | Register )

 
Reply to this topicStart new topic
> Need help with boxes
GavinsMommy
post Jan 7 2007, 09:48 PM
Post #1





Group: Members
Posts: 7
Joined: 7-January 07
Member No.: 1,488



I am working on a store for someone, they want me to add some boxes to the right side of their site... I have no clue how to do this. I am pretty good with HTML but not a PRO or anything lol Anyhow if anyone can help it would be appreciated.
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
Darin McGrew
post Jan 8 2007, 11:55 AM
Post #2


WDG Member
********

Group: Root Admin
Posts: 8,365
Joined: 4-August 06
From: Mountain View, CA
Member No.: 3



What kind of "boxes"?
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
GavinsMommy
post Jan 8 2007, 12:27 PM
Post #3





Group: Members
Posts: 7
Joined: 7-January 07
Member No.: 1,488



ok like I have for her here on the left.... http://www.nurturingmomandbaby.com/ also for some reason I can't change the link colors
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
Darin McGrew
post Jan 8 2007, 01:16 PM
Post #4


WDG Member
********

Group: Root Admin
Posts: 8,365
Joined: 4-August 06
From: Mountain View, CA
Member No.: 3



It looks like you've got a layout table. Why can't you just add more TD elements on the right side of your layout table?

But first, I recommend that you fix the HTML errors reported by the online validator.
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
GavinsMommy
post Jan 8 2007, 02:26 PM
Post #5





Group: Members
Posts: 7
Joined: 7-January 07
Member No.: 1,488



holy smokes there is alot lol this was an edit I am doing, I never heard of that validator, ty! glad I found this board lol
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
GavinsMommy
post Jan 9 2007, 08:01 AM
Post #6





Group: Members
Posts: 7
Joined: 7-January 07
Member No.: 1,488



okay I guess I am more of an HTML rookie than I thought lol (and here I thought I knew it well enough LOL) I can't figure out how to correct the errors.... and still can't get those dang boxes on the right spot sad.gif
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
Darin McGrew
post Jan 9 2007, 12:18 PM
Post #7


WDG Member
********

Group: Root Admin
Posts: 8,365
Joined: 4-August 06
From: Mountain View, CA
Member No.: 3



QUOTE(GavinsMommy @ Jan 9 2007, 05:01 AM) *
and still can't get those dang boxes on the right spot sad.gif
I find that tables are easiest to work with when the borders are turned on. You can turn them off when you're done, but while sorting them out, it helps to be able to see where everything is in relationship to everything else.
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
Darin McGrew
post Jan 9 2007, 12:41 PM
Post #8


WDG Member
********

Group: Root Admin
Posts: 8,365
Joined: 4-August 06
From: Mountain View, CA
Member No.: 3



QUOTE(GavinsMommy @ Jan 9 2007, 05:01 AM) *
I can't figure out how to correct the errors....
Here's an explanation of the errors reported by the validator:

CODE
Error: required attribute alt not specified
Images are required to have ALT attributes (with alternative text for browsers that don't/can't use the image). See Use of ALT texts in IMGs

CODE
Error: attribute values must be quoted in XML
Just what it says. You need to quote the attribute values. For example, size=2 should be size="2" (although I recommend avoiding the <font> tag to begin with).

CODE
Error: end tag for b omitted; end tags are required in XML for non-empty elements; empty elements require an end tag or the start tag must end with />
You have incorrectly nested tags. HTML elements are like containers. You can put one inside another <span><b>...</b></span>, but you can't have one partially inside and partially outside <span><b>...</span></b>.

CODE
Error: value of attribute method cannot be POST; must be one of get, post
Error: value of attribute type cannot be Text; must be one of text, password, checkbox, radio, submit, reset, file, hidden, image, button
XHTML is case sensitive. If you're going to use XHTML (and I recommend that you stick with plain HTML unless you benefit from using XHTML in some specific way), then you need to use lower case for element names, attribute names, and many attribute values.

CODE
Error: element ... not allowed here; possible cause is an inline element containing a block-level element
You can't put a block-level FORM inside an inline STRONG, or a block-level DIV inside an inline FONT.

CODE
Error: end tag for ... omitted; end tags are required in XML for non-empty elements; empty elements require an end tag or the start tag must end with />
More XHTML details. HTML uses <input ...> and <br> but XHTML uses <input ... /> and <br />. Again, I recommend using plain HTML.

(And other elements require that closing tags be correctly nested.)

CODE
Warning: character & is the first character of a delimiter but occurred as data
When & appears as part HTML data (even as part of a URL in an HREF attribute), it needs to be escaped as &

CODE
Error: element a not allowed here; assuming missing caption start-tag
You can't put content directly in a table. It needs to go inside a TD (or TH or CAPTION) element.

CODE
Error: required attribute type not specified
Use <style type="text/css">. However...

CODE
Error: element style not allowed here; check which elements this element may be contained within
The STYLE element goes in the HEAD, not in the BODY.

CODE
Error: ID submen already defined
ID values must be unique within a document. You've used the same ID value more than once. You can use the CLASS attribute (and change your CSS selectors accordingly), or you can change one of the ID attributes so they aren't the same.

Well, that's it for now. After you've fixed some of these errors, you can run the validator again and see what else it reports.
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
GavinsMommy
post Jan 9 2007, 02:35 PM
Post #9





Group: Members
Posts: 7
Joined: 7-January 07
Member No.: 1,488



thanks for all your time and help smile.gif
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
GavinsMommy
post Jan 14 2007, 04:32 PM
Post #10





Group: Members
Posts: 7
Joined: 7-January 07
Member No.: 1,488



I guess I am more of a rookie than I thought LOL I was wondering if someone could point me to somewhere that will give me the proper coding and where I should put it? I surrender! LOL I'm repairing the errors as I have time but for now I'd at least like to get those boxes up for her... TIA
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
Darin McGrew
post Jan 14 2007, 05:11 PM
Post #11


WDG Member
********

Group: Root Admin
Posts: 8,365
Joined: 4-August 06
From: Mountain View, CA
Member No.: 3



Please see the FAQ entry Where can I learn about HTML?
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
GavinsMommy
post Jan 14 2007, 07:54 PM
Post #12





Group: Members
Posts: 7
Joined: 7-January 07
Member No.: 1,488



thanks I'll check it out
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post

Reply to this topicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 



- Lo-Fi Version Time is now: 24th April 2024 - 11:41 AM