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 07-03-2005, 01:12 AM Any ideas?
Junior Talker

Posts: 1
Trades: 0
So a buddy & i built my music website and i'm really happy with it from a design and content perspective. The issue i seem to be running into is with the icons (house, megaphone, headphone, etc. . ). They seem to be get bunched up due to screen dimension or toolbars pulled into the viewing window. This seems to be an issue on mac and pc - sometimes it seems to work fine but other times the home page can get pretty wacked out.
The website is www.abequigley.com
I'm new here, and don't have much to offer in terms of computer knowledge, but i'll listen and try anything
abe
abequig is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 07-03-2005, 05:04 AM
The_Anomaly's Avatar
Extreme Talker

Posts: 216
Location: Boston, Ma
Trades: 0
try replacing this (starting at line 166 of your source code on the main page)
Code:
<div id="navigation">
<!--  DONT TOUCH ANYTHING HERE-->
	<a href="index.php"><img src="images/home.jpg" border="0" alt="Home"></a> 
	<a href="boards/index.php"><img src="images/forum.jpg" border="0" alt="Forum"></a>
	<a href="contact.php"><img src="images/contact.jpg" border="0" alt="Contact"></a>
	<a href="javascript:popUp('media/abemp3.htm')"><img src="images/listen.jpg" border="0" alt="Music Player"></a>
	<a href="buy.php"><img src="images/buy.jpg" border="0" alt="Buy"></a>
</div>
with this. its going to put them into a table with the width of each column 50px since your widest picture is 47px. then they should never bunch together but stay the same distance apart. If Its not enough space between then try changing the width on each <td> more or less accordingly.

Code:
<div id="navigation">
<!--  DONT TOUCH ANYTHING HERE-->
<table border=0>
    <tr>
        <td width=50>
	<a href="index.php"><img src="images/home.jpg" border="0" alt="Home"></a>
	</td>
        <td width=50>
        <a href="boards/index.php"><img src="images/forum.jpg" border="0" alt="Forum"></a>
	</td>
        <td width=50>
        <a href="contact.php"><img src="images/contact.jpg" border="0" alt="Contact"></a>
	</td>
	<td width=50>
        <a href="javascript:popUp('media/abemp3.htm')"><img src="images/listen.jpg" border="0" alt="Music Player"></a>
	</td>
	<td width=50>
        <a href="buy.php"><img src="images/buy.jpg" border="0" alt="Buy"></a>
        </td>
     </tr>
</table>

Last edited by The_Anomaly; 07-03-2005 at 05:06 AM..
The_Anomaly is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Any ideas?
 

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.67900 seconds with 12 queries