Web page not turning up in google.. continued

M

Michael_jd

Hi. A little while ago I posted on this newsgroup that a web page I had made
(http://users.actrix.co.nz/hallhousehold/index.htm) wasn't turning up in
google. The problem identified was that there were some errors in the code.
I have tried my best to fix them -

- I have changed the back-slashes to forward-slashes
- I have changed the colour codes to having no quotes and having a #

Are there any other errors that I need to fix? Sorry but I am just a part
time web designer.

Thanks for any time spent.
 
D

Domestos

It seems to be coming up in google okay now...

Type in
St David's Church Rotorua
and google finds it straight away
 
B

Beauregard T. Shagnasty

Michael_jd said:
Hi. A little while ago I posted on this newsgroup that a web page I had made
(http://users.actrix.co.nz/hallhousehold/index.htm) wasn't turning up in
google. The problem identified was that there were some errors in the code.
I have tried my best to fix them -

- I have changed the back-slashes to forward-slashes
- I have changed the colour codes to having no quotes and having a #

Are there any other errors that I need to fix? Sorry but I am just a part
time web designer.

You need to resize the picture to exactly the size you want, in a
graphics editing program. Do not "resize" images via the HTML height and
width attributes. That pic should be maybe 8-10KB at most.
 
J

Jonathan N. Little

Michael_jd said:
Hi. A little while ago I posted on this newsgroup that a web page I had made
(http://users.actrix.co.nz/hallhousehold/index.htm) wasn't turning up in
google. The problem identified was that there were some errors in the code.
I have tried my best to fix them -

- I have changed the back-slashes to forward-slashes
- I have changed the colour codes to having no quotes and having a #

Are there any other errors that I need to fix? Sorry but I am just a part
time web designer.

Thanks for any time spent.


Have some boo-boos in your stylesheet though, do not quote the color and
other keywords in stylesheets

4.1.2 Keywords
http://www.w3.org/TR/CSS21/syndata.html#keywords

a:visited {text-decoration:none;color:"blue"}
^ ^
Should be: a:visited { text-decoration: none; color: blue }

a:hover {color:"green";text-decoration:"none"}
^ ^ ^ ^
td.logo_pic {background-color:"white";text-align:"center"}
^ ^ ^ ^
td.logo {background-color:"white"}
^ ^

h1.logo_text {font-size:35}
^^
And missing unit specifier, did you mean 35px?


--


Take care,

Jonathan
 
T

Toby Inkster

Michael_jd said:
Hi. A little while ago I posted on this newsgroup that a web page I had made
(http://users.actrix.co.nz/hallhousehold/index.htm)

You have some really weird table nesting errors:
http://www.htmlhelp.com/cgi-bin/validate.cgi?url=http://users.actrix.co.nz/hallhousehold/index.htm

Things like:

<table border=1 valign="top">
<tr>
<td width=150 height=150><img ...></td>
<td height=100 width=500>
<p>WELCOME to the web page of...</p>
</td>
</table>

Notice you didn't close the <tr> (not technically an error, but will cause
problems in many browsers).

Followed straight away by:

<p>The philosophy...</p>
<p>Feel free...</p>
<p>The Church's Minister is Rev John Turton.</p>
</table>

where you've skipped out a </td> and a </tr>.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,744
Messages
2,569,482
Members
44,901
Latest member
Noble71S45

Latest Threads

Top