Why are some of my words not on my website? The words are under the bottom and not on the site page.?

2008-07-04 4:02 pm
How can I fix this? Im using html. I tried the <*br><*br> (without the *), but didn't kow where to put them. My site is:http://www.strongstennisacademy.com Can you explain this so a dummy can understand please?
更新1:

CSS? Do I change this in the index source or go to my file page and css file(cascading page)? If so I change what to what?

回答 (2)

2008-07-04 4:17 pm
✔ 最佳答案
Don't want to be harsh, but your code is a bit of a jumbled mess...

The wrapper div is closed halfway down the page. Ther appears to be a superfluous </div> in there.

Also, please do not use bgsound... if you want sound, use EMBED and allow people to turn it off.

Don't use a whole lot of br tags to add space. Use style sheets: margins and padding instead.

In at least two instances do I see attribute values span lines... put the closing quote right next to the last character, then you can have the closing > on the next line.

In AT LEAST one instance, an attribute is placed *against* a value of the previous one: width="480"class="floatTL"

Use the space bar wisely.

Indent paragraphs neatly, and hit the enter button once in a while, so your lines don't run off-screen.

You're inconsistent in closing tags. Some closed elements have >, others have />. XHTML *demands* all closed elements use />

In XHTML, it's < br space / > The space is for browser compatibility.

Hope that all helps you on your way...
2008-07-04 4:50 pm
I checked your CSS codes. You're using a background image for your left and right column.

background-image : url(images/wbg.gif);
background-repeat : repeat-x;

You're specifying it to repeat horizontally only so that i covers the entire width of your column, but the image is shorter then then height of the column, that's why you're seeing parts of your text on the white background.

Try changing your background to this:

background: #adce33 url('images/wbg.gif') repeat-x

And also, take out the "height" attributes in the left and right column in your CSS file.

That should fix the problem. Good luck!


收錄日期: 2021-05-03 11:50:11
原文連結 [永久失效]:
https://hk.answers.yahoo.com/question/index?qid=20080704080207AAfbkKz

檢視 Wayback Machine 備份