Help - Search - Members - Calendar
Full Version: website help?
Forums > Resource Center > Webmasters' Corner > Webmasters' Corner Resolved Topics
Saraaaah
So I'm making this website to sell some shoes and such, and I was just wondering how to get those images links under the "high-top converse" section to appear horizontally instead of vertically. I already tried the display:inline thing, but it didn't work.
Also, how do I make it so everything looks the same in all resolutions?
Thanks in advance _smile.gif
link
schizo
You have a million different positionings going on. If you want your layout to be centered, change everything to this format.

CODE
.div{
position:absolute;
left:50%;
margin-left:#px;
top:#px;}


Only change the # symbols.

As for getting the images to be horizontal, I would use a table. People may tell you tables are outdated or some other superior coding shit, but they're easy and they work.

CODE
<table>
<tr>
<td>
Image and description
</td>
<td>
Image and description
</td>
</tr>
</table>


The tds make columns, the trs make rows.
Saraaaah
Thanks for the quick response! I'll need to try these. I guess I should learn more about coding sweating.gif
creole
Topic Closed and Moved to Resolved.

ps, next time you could try the webmaster's corner.
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.