Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

HTML Forum


You are currently viewing our HTML Forum as a guest. Please register to participate.
Login



Post a Project »

Find a Professional HTML Freelancer!

Find a Freelancer to help you with your HTML projects

FREE Outsourcing eBook!

Reply
Old 10-15-2008, 01:33 AM please help
Junior Talker

Posts: 1
Trades: 0
ok im trying to make a site layout this i what i got so far http://down4whateva.com/prototype/index12.html ...and i wanna make each wanted picture a link to another page now heres the problem for the some reason the img's wont stay in place ..they look fine on my html editor but when i upload them and view them there not where i put them ...can any body help me what am i doing wrong


email/msn: vnunez86@live.com
aim:theone2929
force is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 10-15-2008, 10:45 PM Re: please help
Brian07002's Avatar
Defies a Status

Posts: 2,162
Name: ...
Location: ...
Trades: 0
Looks like your doing things the 'hard way' meaning your code has a bunch of &nbsp; in them. What that means is that you are using the space bar key way too much to space out your elements...All you need to do is create a table layout, or use css to align your images with <div tags there are many tutorials on the web for this stuff.

Good Luck
__________________
Made2Own

Please login or register to view this content. Registration is FREE
Brian07002 is offline
Reply With Quote
View Public Profile
 
Old 10-16-2008, 12:34 AM Re: please help
Banned

Posts: 22
Trades: 0
Yeah. There are actually HTML table generators online. Do a quick google search, then use border=0 to hide the border/so its not an OBVIOUS table
takita787 is offline
Reply With Quote
View Public Profile
 
Old 10-16-2008, 09:46 AM Re: please help
LadynRed's Avatar
Defies a Status

Posts: 10,017
Location: Tennessee
Trades: 0
GAAhh.. forget the tables !!! You have WAY more flexibility using CSS. I suggest you check out the stickies, there are several solutions for what you want to do.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

LadynRed is offline
Reply With Quote
View Public Profile
 
Old 10-16-2008, 10:39 AM Re: please help
wayfarer07's Avatar
Poo on You

Latest Blog Post:
Introducing WowWindow
Posts: 3,987
Name: Abel Mohler
Location: Asheville, North Carolina USA
Trades: 0
Good lord. No comment.
__________________
I build web things. I work for the startup
Please login or register to view this content. Registration is FREE
.
wayfarer07 is offline
Reply With Quote
View Public Profile Visit wayfarer07's homepage!
 
Old 10-18-2008, 04:31 PM Re: please help
Sean@WMS's Avatar
Skilled Talker

Posts: 52
Name: Sean Connors
Location: Eureka, CA USA
Trades: 0
You definitely need to not use non-breaking spaces for laying things out.

You could do this rather easily with a table layout, but you might as well not start out old school and start learning standards complient layout using XHTML & CSS.

Here is an example that should get you started (you'll probably want to tweek around a bit more on margins & padding):

Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style type=text/css>
body {
 background-color: #000;
}
#container {
 margin: auto;
 padding: 38px 0 38px 0; /*top, right, bottom, left*/
 width: 640px;
 height: 400px;
 background-image: url(images/bg.JPG);
 background-repeat: no-repeat;
}
#row1 img, #row2 img{
 margin: 0 38px 0 38px;
 width: 137px;
 height: 162px;
}
#row2 {
 margin-top: 80px; /*subtract this from the 480px starting height of the container */
}
</style>
</head>
<body>
<div id="container">
 <div id="row1"><img/><img/><img/></div>
 <div id="row2"><img/><img/><img/></div>
</div>
</body>
</html>
__________________
Web Merchant Services

Please login or register to view this content. Registration is FREE
,
Please login or register to view this content. Registration is FREE
Sean@WMS is offline
Reply With Quote
View Public Profile Visit Sean@WMS's homepage!
 
Reply     « Reply to please help
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

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





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.76807 seconds with 12 queries