Welcome to MobyThreads.com!
FAQFAQ      ProfileProfile    Private MessagesPrivate Messages   Log inLog in
All support for the MobyThreads Threaded phpBB MOD can now be found on welsolutions at this forum

Critique My Website

 
   Web Hosting and Web Master Forums (Home) -> Webmaster RSS
Next:  Email blacklist?  
Author Message
ohjust

External


Since: Jan 15, 2004
Posts: 7



(Msg. 1) Posted: Thu Jan 15, 2004 4:11 am
Post subject: Critique My Website
Archived from groups: alt>www>webmaster (more info?)

Please critique my website http://www.SurroundedByAngels.com

Also, on the links page there is a link/script to Ebay auctions with the
word angel in it . The box is showing up too far to the left . How can I put
it where I want it ?
Also, at the bottom of the web page window, there is scrolling text . How do
I slow down the speed ?

SBA

 >> Stay informed about: Critique My Website 
Back to top
Login to vote
user309

External


Since: Nov 19, 2003
Posts: 19



(Msg. 2) Posted: Thu Jan 15, 2004 4:11 am
Post subject: Re: Critique My Website [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

"SBA" <OhJust RemoveThis @FuckHotmail.com> wrote in message
news:0c857f8b13ce06e2290a4a44f588ef9c@news.teranews.com...
| Please critique my website http://www.SurroundedByAngels.com
|
| Also, on the links page there is a link/script to Ebay auctions
with the
| word angel in it . The box is showing up too far to the left .
How can I put
| it where I want it ?
| Also, at the bottom of the web page window, there is scrolling
text . How do
| I slow down the speed ?
|
| SBA
|

replace the opening div tag just before the ebay script
from this: <div align="center">

to: <div style="margin-left:160px;">

the 160px should clear the left column.

hth
--
Chet
ng2.chet RemoveThis @NOcharterSPAM.net (remove NO.....SPAM)

 >> Stay informed about: Critique My Website 
Back to top
Login to vote
thiswillbounce

External


Since: Nov 22, 2003
Posts: 32



(Msg. 3) Posted: Thu Jan 15, 2004 4:11 am
Post subject: Re: Critique My Website [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

"SBA" wrote:
: Please critique my website http://www.SurroundedByAngels.com

My suggestions:

- Left-align the text. Centred text is hard to read because the eyes have to
search for the beginning of the line each time. I wouldn't centre text
except for very short blurbs.

- Move the quote at the top to a column at the right, or have it in a
smaller font where it is but making it clear that it's a quote and not the
main text. (Or is it part of the main text?)

- Change "a" to "an" in "We are a group of people who want to be a Angel to
others."

- Make the purpose of your site clearer by expanding on the above and making
it more prominent. You go straight from that sentence to something about
"assignments." Do you need to join a group before doing an assignment? Is
this site for some sort of online class? Is it tied to the military? It
isn't clear.

Lois
 >> Stay informed about: Critique My Website 
Back to top
Login to vote
discooctopusn0

External


Since: Nov 12, 2003
Posts: 107



(Msg. 4) Posted: Thu Jan 15, 2004 4:45 am
Post subject: Re: Critique My Website [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

SBA wrote:
<font color=purple> > Please critique my website <a style='text-decoration: underline;' href="http://www.SurroundedByAngels.com</font" target="_blank">http://www.SurroundedByAngels.com</font</a>>

I do not like it because it gives me shitty ad popups.



 >
 > Also, on the links page there is a link/script to Ebay auctions with
 > the word angel in it . The box is showing up too far to the left .
 > How can I put it where I want it ?

Stop the popups and I may look again.


 > Also, at the bottom of the web page window, there is scrolling text .
 > How do I slow down the speed ?
 >
 > SBA<!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: Critique My Website 
Back to top
Login to vote
ohjust

External


Since: Jan 15, 2004
Posts: 7



(Msg. 5) Posted: Thu Jan 15, 2004 5:48 am
Post subject: Re: Critique My Website [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

I am fixing to upgrade where there are no banners or popups..Only $1.99 a
month to get rid of it Smile

SBA

"Disco Octopus" <discooctopusN05PAM.RemoveThis@yahoo.com> wrote in message
news:bhmNb.89$KW.4172@news.optus.net.au...
 > SBA wrote:
<font color=green>  > > Please critique my website <a style='text-decoration: underline;' href="http://www.SurroundedByAngels.com</font" target="_blank">http://www.SurroundedByAngels.com</font</a>>
 >
 > I do not like it because it gives me shitty ad popups.
 >
 >
 >
  > >
  > > Also, on the links page there is a link/script to Ebay auctions with
  > > the word angel in it . The box is showing up too far to the left .
  > > How can I put it where I want it ?
 >
 > Stop the popups and I may look again.
 >
 >
  > > Also, at the bottom of the web page window, there is scrolling text .
  > > How do I slow down the speed ?
  > >
  > > SBA
 >
 >
 >
 ><!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: Critique My Website 
Back to top
Login to vote
user318

External


Since: Nov 28, 2003
Posts: 50



(Msg. 6) Posted: Thu Jan 15, 2004 5:54 am
Post subject: Re: Critique My Website [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

"SBA" <OhJust.DeleteThis@FuckHotmail.com> wrote in
news:0c857f8b13ce06e2290a4a44f588ef9c@news.teranews.com:

 > Also, at the bottom of the web page window, there is scrolling text .
 > How do I slow down the speed ?

Somewhere in your source (to the top, just under <head>) you have some
parameters set for the javascript that runs the scroller:

DS_Speed=0;

Increase the value. Try DS_Speed=1; or higher.

Or take away that line and change

setTimeout("DS_StatusBarScroll()",DS_Speed);

to something like:

setTimeout("DS_StatusBarScroll()",2);

That's manual precompiling, not that it will make much difference, it gives
a smaller source and since you'r not dynamically changing the speed anyway,
why waist the resources by making the processor look up a pointer adress
for a static number it could have got statically? Waist of memory and
processor resources (if the compiler doesn't optimise it out).
don't worry if you don't understand all that Smile

--
Add articles with optional images to news/events pages via FTP
News Updater: <a style='text-decoration: underline;' href="http://www.xmlssoftware.com/NUpdater" target="_blank">http://www.xmlssoftware.com/NUpdater</a><!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: Critique My Website 
Back to top
Login to vote
user162

External


Since: Jul 31, 2003
Posts: 67



(Msg. 7) Posted: Thu Jan 15, 2004 10:03 am
Post subject: Re: Critique My Website [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

"Disco Octopus" <discooctopusN05PAM RemoveThis @yahoo.com> wrote in message
news:bhmNb.89$KW.4172@news.optus.net.au...
 > SBA wrote:
<font color=green>  > > Please critique my website <a style='text-decoration: underline;' href="http://www.SurroundedByAngels.com</font" target="_blank">http://www.SurroundedByAngels.com</font</a>>
 >
 > I do not like it because it gives me shitty ad popups.

Oh? Have you not turned these things off yet?

Cheers
Richard.<!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: Critique My Website 
Back to top
Login to vote
shit

External


Since: Dec 19, 2003
Posts: 355



(Msg. 8) Posted: Thu Jan 15, 2004 2:34 pm
Post subject: Re: Critique My Website [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

in post: <news:0c857f8b13ce06e2290a4a44f588ef9c@news.teranews.com>
"SBA" <OhJust RemoveThis @FuckHotmail.com> said:

<font color=purple> > Please critique my website <a style='text-decoration: underline;' href="http://www.SurroundedByAngels.com</font" target="_blank">http://www.SurroundedByAngels.com</font</a>>

no DTD or charset and 100 errors.

<a style='text-decoration: underline;' href="http://validator.w3.org/check?uri=http%3A%2F%2Fwww.surroundedbyangels.com%2F&doctype=HTML+4.01+Transitional&charset=iso-8859-1+%28Western+Europe%29" target="_blank">http://validator.w3.org/check?uri=http%3A%2F%2Fwww.surroundedbyangels....%2F&doc</a>

--
brucie - i usenet nude<!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: Critique My Website 
Back to top
Login to vote
discooctopusn0

External


Since: Nov 12, 2003
Posts: 107



(Msg. 9) Posted: Fri Jan 16, 2004 2:59 am
Post subject: Re: Critique My Website [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

rf wrote:
 > "Disco Octopus" <discooctopusN05PAM.DeleteThis@yahoo.com> wrote in message
 > news:bhmNb.89$KW.4172@news.optus.net.au...
  >> SBA wrote:
<font color=brown>   >>> Please critique my website <a style='text-decoration: underline;' href="http://www.SurroundedByAngels.com</font" target="_blank">http://www.SurroundedByAngels.com</font</a>>
  >>
  >> I do not like it because it gives me shitty ad popups.
 >
 > Oh? Have you not turned these things off yet?
 >
 > Cheers
 > Richard.

No I haven't.

I dont want to turn them off, because there are some popups that I actually
require. If there you know of a way to configure popups as such....

<popups>
<disallow>*</disallow>
<allow>mydomain.com,myfriendsdomain.com</allow>
</popups>

.... now wouldnt that be good?<!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: Critique My Website 
Back to top
Login to vote
user117

External


Since: Jul 02, 2003
Posts: 589



(Msg. 10) Posted: Fri Jan 16, 2004 2:59 am
Post subject: Re: Critique My Website [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Disco Octopus wrote:

 > I dont want to turn them off, because there are some popups that I actually
 > require. If there you know of a way to configure popups as such....
 >
 > <popups>
 > <disallow>*</disallow>
 > <allow>mydomain.com,myfriendsdomain.com</allow>
 > </popups>
 >
 > ... now wouldnt that be good?

Do you mean site-specific popup handling at the browser?

--
Blinky Registered Linux User #297263<!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: Critique My Website 
Back to top
Login to vote
discooctopusn0

External


Since: Nov 12, 2003
Posts: 107



(Msg. 11) Posted: Fri Jan 16, 2004 5:20 am
Post subject: Re: Critique My Website [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Blinky the Shark wrote:
 > Disco Octopus wrote:
 >
  >> I dont want to turn them off, because there are some popups that I
  >> actually require. If there you know of a way to configure popups as
  >> such....
  >>
  >> <popups>
  >> <disallow>*</disallow>
  >> <allow>mydomain.com,myfriendsdomain.com</allow>
  >> </popups>
  >>
  >> ... now wouldnt that be good?
 >
 > Do you mean site-specific popup handling at the browser?

yeah. that would be very nice.<!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: Critique My Website 
Back to top
Login to vote
user162

External


Since: Jul 31, 2003
Posts: 67



(Msg. 12) Posted: Fri Jan 16, 2004 7:36 am
Post subject: Re: Critique My Website [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

"Disco Octopus" <discooctopusN05PAM DeleteThis @yahoo.com> wrote in message
news:kPFNb.113$KW.5456@news.optus.net.au...
 > rf wrote:
  > > "Disco Octopus" <discooctopusN05PAM DeleteThis @yahoo.com> wrote in message
  > > news:bhmNb.89$KW.4172@news.optus.net.au...
   > >> SBA wrote:
<font color=brown>   > >>> Please critique my website <a style='text-decoration: underline;' href="http://www.SurroundedByAngels.com</font" target="_blank">http://www.SurroundedByAngels.com</font</a>>
   > >>
   > >> I do not like it because it gives me shitty ad popups.
  > >
  > > Oh? Have you not turned these things off yet?
  > >
  > > Cheers
  > > Richard.
 >
 > No I haven't.
 >
 > I dont want to turn them off, because there are some popups that I
actually
 > require. If there you know of a way to configure popups as such....

I use popup stopper from panicware. Leaning on Ctrl allows popups.

Cheers
Richard.<!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: Critique My Website 
Back to top
Login to vote
Display posts from previous:   
Related Topics:
Please Critique Our Site - We have been working hard to make our site easy to use and easy to navigate. It's our business site so it's really important. Please take a minute to look it over and give me some insight into how I can make it better. All comments are welcome! Thank...

how bout a critique? - It's been a long time and a lot of revisions since I last asked - anyone have the time to evaluate and offer suggestions? TIA, Mary http://www.americanrecycler.com

( NEED HELP ) Please critique my site. Thanks! - http://www.rspw.net Someone please go here and tell me what I'm doing wrong.

comments on new site design...critique please - coding, design, layout, etc. no links work, this is just the template for the rest of it. thank you! http://www.philadelphiamusicproject.org/mockup/

Photography site for critique: bring it on!! - After far too many weeks spent hacking around with CSS, JS, PHP and PNG, the redesign of my photography site is finally in a presentable state! I've tested it with IE 6, Opera 7 and Moz Firebird 1.4 on WinXP, as well as some non-CSS browsers on RISC OS, ...
   Web Hosting and Web Master Forums (Home) -> Webmaster All times are: Pacific Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum



[ Contact us | Terms of Service/Privacy Policy ]