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
Aligning text on the same line
Old 07-20-2008, 09:23 PM Aligning text on the same line
Average Talker

Posts: 28
Trades: 0
Hi,

I am writing various things on one line - such as Previous, Back to Main Menu and Next - but would like to align the differently e.g. I would like "previous" to be aligned to the left of the page, "back to Main Menu" in the middle and "Next" on the right side. I have tried pressing space bar - but am only able to do one space in Dreamweaver. Any ideas?

Thanks.
oodya is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 07-21-2008, 12:36 AM Re: Aligning text on the same line
yashory's Avatar
Novice Talker

Posts: 12
Trades: 0
you can use a table with width=100% and contains 3 cols
so you can do it easily...
yashory is offline
Reply With Quote
View Public Profile
 
Old 07-21-2008, 04:09 AM Re: Aligning text on the same line
chrishirst's Avatar
Missing! presumed drunk.

Posts: 42,380
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
No, DON'T use a table for some thing SO simple.

CSS
Code:
<style type="text/css">
#nav_links {
	height:25px;
	border:1px solid blue;
	width:95%;
	margin:0 auto;
	padding:0 10px;
}
#nav_links #next {
	float:right;
}
#nav_links #back {
	float:left;
}
#nav_links #main {
	display:block;
	text-align:center;
}
</style>
HTML Code:
<div id="nav_links">
<a id="back" href="#" title="Previous page">Previous Page</a>
<a id="next" href="#" title="Next page">Next Page</a>
<a id="main" href="#" title="Main Menu">Main Menu</a>
</div>
__________________
Chris. ->>
Please login or register to view this content. Registration is FREE
<<-

A foolish consistency is the hobgoblin of little minds
Thought for today:- Is SEO the only industry where all the cowboys are Indians?
chrishirst is offline
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Reply     « Reply to Aligning text on the same line
 

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