http://geraldrussell.bravehost.com/FarmHouseFoods.html I made that site, but on some peoples computers when they go to it, the pictures are in the wrong place, how do I make it to where it is the same on everyone elses computer?
Use a completely different markup for the images and their labels. It could be a two row table with the labels as th and images in td:
HTML Code:
<table><tr><th>Salsa</th><th>Jalepeno Jelly</th><th>Sweet n Spicey Pickles</th></tr><tr><td>[salsa img]</td><td>[jelly img]</td><td>[pickle img]</td></tr></table>
Or you could use a definition list and style accordingly:
HTML Code:
<dl><dt>Salsa</dt><dd>[salsa img]</dd><dt>Jalepeno Jelly</dt><dd>[jelly img]</dd><dt>Sweet n Spicey Pickles</dt><dd>[pickle img]</dd></dl>
"Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it." Brian W. Kernighan
"Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it." Brian W. Kernighan
ok, thanks alot, I wouldnt know what to do if it wasnt for yall. Learning how to make websites is a little harder than i thought, but I have learned alot more than I knew before.
"Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it." Brian W. Kernighan
It's a very nice toolbox as long as you're doing your web development on a Win box.
"Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it." Brian W. Kernighan
Bookmarks