|
|
|
||||
|
Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact us. |
![]() |
|
|||||||
| Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed. |
|
|
Thread Tools |
|
|
#1 |
|
Confirmed User
Industry Role:
Join Date: Aug 2003
Location: Canada
Posts: 2,310
|
Code:
text <center>link</center> |
|
|
|
|
|
#2 |
|
Confirmed User
Join Date: Dec 2005
Posts: 1,261
|
td align="center"
|
|
|
|
|
|
#3 |
|
Confirmed User
Industry Role:
Join Date: Aug 2003
Location: Canada
Posts: 2,310
|
|
|
|
|
|
|
#4 |
|
Sofa King Band
Join Date: Jul 2002
Location: Outside the box
Posts: 29,903
|
You can't have something left aligned and something centered....
the centered item would have no idea where the center is supposed to be. The more "text" you have left aligned, the further to the right the "centered" link is going to end up. |
|
|
|
|
|
#5 |
|
Confirmed User
Industry Role:
Join Date: Aug 2003
Location: Canada
Posts: 2,310
|
ok, guess i will have to create 2 different tables to do this. one for the text & one for the link. i have to do this more then 60 times though. i was hoping for an easier way to do this.
|
|
|
|
|
|
#6 |
|
Confirmed User
Join Date: Jun 2007
Location: U.K
Posts: 134
|
you can do this using some simple css if you so wish
Code:
<html>
<head>
<style type="text/css" title="text/css" media="all">
<!--
#container {
text-align:center;
}
#left {
display: inline;
float: left;
}
#center {
display: inline;
}
#right {
display: inline;
float: right;
}
-->
</style>
</head>
<body>
<table>
<tr>
<td>
<div id="container"><div id="left">left text</div><div id="center">center text</div></td>
</tr>
</table>
</body>
</html>
__________________
Trade blog traffic with my Penis enlargement site .. |
|
|
|
|
|
#7 |
|
Confirmed User
Industry Role:
Join Date: Aug 2003
Location: Canada
Posts: 2,310
|
i was just going to ask if there was a way to do this with css, thanks warlordx. i'll try that now.
|
|
|
|
|
|
#8 |
|
Confirmed User
Join Date: Jun 2007
Location: U.K
Posts: 134
|
no problemo bud im a code whore lmao speak nice things about me if the cops ever come knocking hehe
__________________
Trade blog traffic with my Penis enlargement site .. |
|
|
|
|
|
#9 |
|
I make pixels work
Industry Role:
Join Date: Jun 2005
Location: I live here...
Posts: 24,386
|
i was going to say, Css that shit in there... it may be tricky but it can damn near ALWAYS be done.....
__________________
|
|
|
|
|
|
#10 |
|
Confirmed User
Join Date: Jun 2007
Location: U.K
Posts: 134
|
hell yeah it can just a bit of a fiddle if you cant remember the piece you need but hey there's plenty of css resource sites out there :D
__________________
Trade blog traffic with my Penis enlargement site .. |
|
|
|
|
|
#11 |
|
Sofa King Band
Join Date: Jul 2002
Location: Outside the box
Posts: 29,903
|
First of all, those should be classes instead of ID's if they're to be done again on the page.... secondly, it still won't work unless the divs have widths specified to them as the divs will adjust according to the length of the divs... again, not properly centering it.
|
|
|
|
|
|
#12 |
|
Moo Moo Cow
Join Date: Mar 2004
Location: Washington State
Posts: 14,748
|
<td align="center">
<div style="width: 500px;"> <p align="left"> text </p> </div> </td> |
|
|
|
|
|
#13 |
|
Confirmed User
Industry Role:
Join Date: Aug 2003
Location: Canada
Posts: 2,310
|
i got it to work with css. thanks again warlordx. you rock!
|
|
|
|
|
|
#14 |
|
Confirmed User
Join Date: Jun 2007
Location: U.K
Posts: 134
|
no problemo bud
__________________
Trade blog traffic with my Penis enlargement site .. |
|
|
|
|
|
#15 | |
|
Confirmed User
Industry Role:
Join Date: Aug 2003
Location: Canada
Posts: 2,310
|
Quote:
|
|
|
|
|
|
|
#16 |
|
Sofa King Band
Join Date: Jul 2002
Location: Outside the box
Posts: 29,903
|
|
|
|
|
|
|
#17 |
|
Confirmed User
Join Date: Jul 2007
Posts: 579
|
html/css guru here...
|
|
|
|