Membership is FREE – with unlimited access to all features, tools, and discussions. Premium accounts get benefits like banner ads and newsletter exposure. ✅ Signature links are now free for all. 🚫 No AI-generated (LLM) posts allowed. Share your own thoughts and experience — accounts may be terminated for violations.

Help with Dreamweaver

Status
Not open for further replies.

jojoyohan

Level 5
Legacy Platinum Member
Joined
Jan 31, 2004
Messages
308
Reaction score
0
I've started a site in dreamweaver (only 2 images so far) and I have the logo and the nav bar whish is supposed to be on the left. The problem is that there is like a line that won't let the 2 connect (they are supposed to flow, 1 into the other). Any help? Thanks.

Ok. I just decided to use <br> instead of dreamweavers default of <p>. I now have made the space between the two pretty small but thats not good enough.

Code:
<img src="images/upper.jpg" width="700" height="100">
<br><img src="images/navbar.jpg" width="100" height="700">

navbar.jpg is really 1px by 1px and made bigger and upper is its original size. Thanks for any help.
 

graphicsguru

Level 3
Legacy Platinum Member
Joined
Mar 5, 2004
Messages
53
Reaction score
0
jojoyohan said:
I've started a site in dreamweaver (only 2 images so far) and I have the logo and the nav bar whish is supposed to be on the left. The problem is that there is like a line that won't let the 2 connect (they are supposed to flow, 1 into the other). Any help? Thanks.

Ok. I just decided to use <br> instead of dreamweavers default of <p>. I now have made the space between the two pretty small but thats not good enough.

Code:
<img src="images/upper.jpg" width="700" height="100">
<br><img src="images/navbar.jpg" width="100" height="700">

navbar.jpg is really 1px by 1px and made bigger and upper is its original size. Thanks for any help.

TRY THIS between you body tags
<img src="images/upper.jpg" width="700" height="100">
<img src="images/navbar.jpg" width="100" height="700">
 

Anthony Ng

@Nameslave
Legacy Exclusive Member
Joined
May 22, 2002
Messages
4,567
Reaction score
14
This reminds me of people playing chess WITHOUT a board (just by calling out the coordinates)! :-D Can we have a look at a test page at least? Thanks.
 

jojoyohan

Level 5
Legacy Platinum Member
Joined
Jan 31, 2004
Messages
308
Reaction score
0
<img src="images/upper.jpg" width="700" height="100">
<img src="images/navbar.jpg" width="100" height="700">
That would just be the two pictures next to eachother.
 

jazzpetals

Level 6
Legacy Platinum Member
Joined
Oct 19, 2004
Messages
603
Reaction score
0
Is the line a table? Just put your cursor on the line and drag it to the end of the page border.

jojoyohan said:
I've started a site in dreamweaver (only 2 images so far) and I have the logo and the nav bar whish is supposed to be on the left. The problem is that there is like a line that won't let the 2 connect (they are supposed to flow, 1 into the other). Any help? Thanks.

Ok. I just decided to use <br> instead of dreamweavers default of <p>. I now have made the space between the two pretty small but thats not good enough.

Code:
<img src="images/upper.jpg" width="700" height="100">
<br><img src="images/navbar.jpg" width="100" height="700">

navbar.jpg is really 1px by 1px and made bigger and upper is its original size. Thanks for any help.
 

Moondancer

Level 4
Legacy Platinum Member
Joined
Jul 25, 2003
Messages
117
Reaction score
0
Look in the code and see if there's a &nbsp; in there that's hiding from you... also set your table properties cell spacing and padding to 0 rather than leave them blank... see if that helps... if not, also look at your preferences to see if it automatically inserts a cell spacer.gif.

Actually a bit more of the code would be helpful since all you are giving us is the image source and size... lots of times it's something else in the code that's messing things up.
 

Anthony Ng

@Nameslave
Legacy Exclusive Member
Joined
May 22, 2002
Messages
4,567
Reaction score
14
Moondancer said:
Actually a bit more of the code would be helpful since all you are giving us is the image source and size... lots of times it's something else in the code that's messing things up.
EXACTLY. Or the page itself so we could look at the codes ourselves.
 

Anthony Ng

@Nameslave
Legacy Exclusive Member
Joined
May 22, 2002
Messages
4,567
Reaction score
14
OIC! You need a table to get rid of that space.
 

graphicsguru

Level 3
Legacy Platinum Member
Joined
Mar 5, 2004
Messages
53
Reaction score
0
<table border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td colspan="12"><img src="images/upper.jpg" width="700" height="100"></td>
</tr>
<tr>
<td width="102" height="700" colspan="0" background="images/navbar.jpg">&nbsp;</td>
<td width="598">&nbsp;</td>
</tr>
</table>
 

jojoyohan

Level 5
Legacy Platinum Member
Joined
Jan 31, 2004
Messages
308
Reaction score
0
Thanks. How do I set that up in dreamweaver automatically?
 

Moondancer

Level 4
Legacy Platinum Member
Joined
Jul 25, 2003
Messages
117
Reaction score
0
insert on the menu bar, try various combinations of rows and columns until you get it looking the way you want...
whoever said table is right... the <br> is the problem because it's a line break which takes up that much room.... or... you can copy graphicsguru's code straight into your code from the code view in dreamweaver.
 
Status
Not open for further replies.

Who has viewed this thread (Total: 1) View details

Who has watched this thread (Total: 2) View details

The Rule #1

Do not insult any other member. Be polite and do business. Thank you!

Members Online

Premium Members

Upcoming events

Our Mods' Businesses

*the exceptional businesses of our esteemed moderators

Top Bottom