Webmaster Forum


Go Back   Webmaster Forum > Web Development > Web Design Lobby

Web Design Lobby Forum for general web design issues not specific to scripting or graphics.


Reply
 
LinkBack Thread Tools Display Modes
Share |
  #1 (permalink)  
Old 10-14-2010, 10:20 AM
Member
Latest Blog:
None

 
Join Date: 08-16-10
Location: Killeen TX
Posts: 31
iTrader: 0 / 0%
Site Map Question

Ok, so i am almost done with the 1st site i have to make. Im just worring about the IDX problem but that is a whole diffrent issuie.
Im looking at my site map, and im kinda worried about somthing. We will be uploading the site to go daddy to have it hosted. There are probably about 12 main pages. BUT.... on my rentals page i have created a folder to store all of the rental properties, so when one becomes avaialble i dont have to make a whole new page i can just grab it from the folder and place a link to it from the rentals page (Each property has its own page) We probably have about 100 properties that we are managing, so that means 100 diffrent pages inside of this folder, along with another folder that has 100 diffrent images in it holding the images for the listings. My question is, will all of this make my site slow, and hard to upload to the server with all of these pictures and other files? is there possibly a better way to do this?
Thanks
__________________
Team Lupe Real Estate
Your One Stop Shop For All Your Real Estate Needs
Killeen Real Estate
Texas Luxury Homes
 
Reply With Quote
  #2 (permalink)  
Old 10-14-2010, 12:17 PM
Junior Member
 
Join Date: 10-10-10
Posts: 12
iTrader: 0 / 0%
As far as i know, you should be fine. There will be no problems, as long as you link your pages right.

And it wont slow down, not all pages will load at once, only 1 at the time.
 
Reply With Quote
  #3 (permalink)  
Old 10-14-2010, 01:11 PM
HTMLBasicTutor's Avatar
Super Moderator
 
Join Date: 10-29-07
Location: British Columbia, Canada
Posts: 18,097
iTrader: 5 / 100%
Are the images sized properly for their use? i.e. exact size needed where placed in the page.

If not, and you are using coding to manipulate the size for the instant it is shown, then the load time will be slowed down as the browser has to download the large image, resize it and then present it. x the number of images on the page could be a substantial problem.
__________________

HTML Basic Tutor - Learn how to code for better SEO
Basic Computer Information - Computer & internet basics for website owners

SEO troubleshooting and review services available. - Pm me.
 
Reply With Quote
  #4 (permalink)  
Old 10-14-2010, 01:15 PM
Member
Latest Blog:
None

 
Join Date: 08-16-10
Location: Killeen TX
Posts: 31
iTrader: 0 / 0%
well their will only be one image on a page, im just worried because of the mass ammounts of pictures in the subfolder. The viewer wont see all of the pictures at the same time, just the one on the page that they click on
__________________
Team Lupe Real Estate
Your One Stop Shop For All Your Real Estate Needs
Killeen Real Estate
Texas Luxury Homes
 
Reply With Quote
  #5 (permalink)  
Old 10-14-2010, 01:23 PM
HTMLBasicTutor's Avatar
Super Moderator
 
Join Date: 10-29-07
Location: British Columbia, Canada
Posts: 18,097
iTrader: 5 / 100%
The number of images in the images folder will not affect the load time of the particular page but as I already noted, if you are not resizing the image for it's purpose (i.e. straight from the camera and uploading and not resizing before upload) then the page is going to load slowly.

Your title for this thread is Site Map Question.
a) Are you talking about a traditional site map (HTML site map)?
or
b) The Sitemap protocol that some search engines use?

The number of images you have isn't going to affect your site map or Sitemap for the visitor as long as the site map doesn't have images on it.
__________________

HTML Basic Tutor - Learn how to code for better SEO
Basic Computer Information - Computer & internet basics for website owners

SEO troubleshooting and review services available. - Pm me.
 
Reply With Quote
  #6 (permalink)  
Old 10-14-2010, 01:57 PM
Member
Latest Blog:
None

 
Join Date: 08-16-10
Location: Killeen TX
Posts: 31
iTrader: 0 / 0%
i probably didnt say it right. When i said site map it was because i was referring to the visual sitemap i was looking at, and all the pictures that where in the image folder..... Thanks man this was helpful. I havent resized the pictures, i didnt even think about it. This is my 1st web site. But all i have to do is go down the line, resize them and save them as the same name in the same folder and everything should be fine right?
__________________
Team Lupe Real Estate
Your One Stop Shop For All Your Real Estate Needs
Killeen Real Estate
Texas Luxury Homes
 
Reply With Quote
  #7 (permalink)  
Old 10-14-2010, 03:18 PM
HTMLBasicTutor's Avatar
Super Moderator
 
Join Date: 10-29-07
Location: British Columbia, Canada
Posts: 18,097
iTrader: 5 / 100%
As long as the size matches the size coding in the pages, everything should be ok.
__________________

HTML Basic Tutor - Learn how to code for better SEO
Basic Computer Information - Computer & internet basics for website owners

SEO troubleshooting and review services available. - Pm me.
 
Reply With Quote
  #8 (permalink)  
Old 10-14-2010, 11:40 PM
Banned
 
Join Date: 09-25-10
Location: Christchurch, New Zealand
Posts: 22
iTrader: 0 / 0%
Right. make sure that the image sizes are the actual size as displayed and don't use the length and width attributes of the <IMG> tag... and while you're at it, how about naming your images based on your target keywords.

For example:
Filename: img000012345.jpg

How about using:

Filename: real-estate-logo.jpg

That would optimize your filenames for SE spiders easier indexing of images.
 
Reply With Quote
  #9 (permalink)  
Old 10-14-2010, 11:57 PM
HTMLBasicTutor's Avatar
Super Moderator
 
Join Date: 10-29-07
Location: British Columbia, Canada
Posts: 18,097
iTrader: 5 / 100%
Quote:
Originally Posted by mintdesignnz View Post
don't use the length and width attributes of the <IMG> tag...
Including the width and height attributes plus the alt attribute in your HTML coding have benefits:
  • The width and height attributes let the browser "save space" for your image and continue to load the page. = page appears to load faster
  • Including the alt attribute has a number of benefits and purposes:
    1. The purpose of the alt attribute is to show text when the image cannot be displayed. It might be missing, the user has images turned off to save bandwidth or their browser of choice is not a graphical browser therefore does not show images.
    2. Another purpose of the alt attribute is to provide alternative text for those using assistive technology to surf the web. e.g. the text is read out to the user if they are blind and using a piece of software to read the page to them.
    3. The text in your alt attribute is meant to describe the image to the people who can't see it. It is not a place to stuff keywords but keywords can be used in the description and provide a SEO benefit.

HTML <img> Tag
Image Alt Attribute

Quote:
Image-related information can be provided for by using the "alt" attribute
Images may seem like a straightforward component of your site, but you can optimize your use of them. All images can have a distinct filename and "alt" attribute, both of which you should takeadvantage of. The "alt" attribute allows you to specify alternative text for the image if it cannot be displayed for some reason (1).

Why use this attribute? If a user is viewing your site on a browser that doesn't support images, or is using alternative technologies, such as a screen reader, the contents of the alt attribute provide information about the picture.

Another reason is that if you're using an image as a link, the alt text for that image will be treated similarly to the anchor text of a text link. However, we don't recommend using too many images for links in your site's navigation when text links could serve the same purpose. Lastly, optimizing your image filenames and alt text makes it easier for image search projects like Google Image Search to better understand your images.
Search Engine Optimization Starter Guide - Google page 18 (opens in PDF)
__________________

HTML Basic Tutor - Learn how to code for better SEO
Basic Computer Information - Computer & internet basics for website owners

SEO troubleshooting and review services available. - Pm me.

Last edited by HTMLBasicTutor; 10-15-2010 at 12:39 AM. Reason: Added info from Google SEO Starter Guide
 
Reply With Quote
Go Back   Webmaster Forum > Web Development > Web Design Lobby

Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
SEO for my site question Shoop SEO Forum 5 08-11-2010 04:36 AM
Question about site TVDinner V7N Forum Support 2 05-23-2008 11:31 AM
Site Map Question Buskerdoo SEO Forum 9 12-05-2007 06:14 AM
Site structure question pctec Marketing Forum 4 11-26-2006 06:48 PM
question about a WP site drew68 Blogging Forum 8 09-08-2006 05:59 AM


V7N Network
Get exposure! V7N I Love Photography V7N SEO Blog V7N Directory


All times are GMT -7. The time now is 06:59 AM.
Powered by vBulletin
Copyright © 2000-2013 Jelsoft Enterprises Limited.
Copyright © 2003 - 2013 Escalate Media LP




Search Engine Optimization by vBSEO 3.6.0 RC 2 ©2011, Crawlability, Inc.