- This topic is empty.
-
AuthorPosts
-
February 29, 2004 at 9:28 pm #645505
Anonymous
InactiveNot being a total techie, one basic ways I am aware of is to make sure you have the height and width specified for each image. That way the space can be allocated and the rest of the page can be loaded. Otherwise you have to wait for the image to load before it can move on to the next part.
Like I said, basic, and not even sure if it is still valid.
February 29, 2004 at 10:13 pm #645520Anonymous
GuestDesign Without Tables using CSS!
– easier said than done, as I have been discovering as I add more and more tables to my site!
February 29, 2004 at 11:34 pm #645524Anonymous
InactiveSplit the page in two or more tables if you don’t use CSS. Then the page will be rendered in the browser one table at a time.
A link would help though…
March 1, 2004 at 6:25 am #645533Anonymous
InactiveDo you have a captain cooks casino dynamically served banner on that page? LOL …… What I discovered is that many dynamically served banners seemed to slow my page down horribly. Once It would stop loading my page at that banner and just sit loading…..so I figured out which banner it was by hosting all my own banners and just coding the link myself…..
thats my tip
March 1, 2004 at 9:29 pm #645587Anonymous
InactiveMy two cents…
– Cut out unnecessary HTML such as comments, font changes, and table elements that are not needed. (Even though a one line comment may not seem like much, consider the effects of the same comment distributed throughout all your users and on all your webpages.)
– Use CSS to control appearance rather than changing fonts and appearance on every page.
– Define the dimensions of every image you use; this way the browser can continue displaying content even if the image hasn’t loaded yet
– Reduce image file sizes
– Remove any excess white space, tabs and carriage returns that you don’t need.
– Minimize Your Headers. Often an HTML editor will add a default tag known as the Generator tag such as
– Minimize DHTML Usage. Some DHTML effects weigh in at 40-60k in accompanying Javascript code.
– Consider external linking to your scripts (ie Javascipt and css)
March 4, 2004 at 6:24 pm #645835Anonymous
InactiveThank you guys, you are the greatest!
This is all very helpful!
-
AuthorPosts