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
HELP! How do I center this?
Old 11-27-2004, 11:01 PM HELP! How do shift this to the right 1 inch?
Novice Talker

Posts: 8
Trades: 0
I am trying to get a big section of a casino shifted to the right about an inch, so that I can have one skyscraper banner on either side.

check out the site at :

http://strokerscasino.com

I'm not a webmaster, but have been able to get this faron my own

I want to place the Europa banner on the top left corner, and I CAN do this, but not without moving the main Online Casino portion to the right about an inch. (it skews everything down)

I appreciate any and all help on this, I am learning tons about HTML, but this has me stumped.

-Edwardo911

Last edited by Edwardo911; 11-27-2004 at 11:07 PM..
Edwardo911 is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 11-27-2004, 11:15 PM
Average Talker

Posts: 17
Trades: 0
Try this:
Put this after the HEAD tag:
Code:
<TABLE cellpadding="0" cellspacing="0" border="0" width="100%" height="100%">
<TR>
<TD width="10%" rowspan="2">The Left Banner</TD>
<TD width="80%">The Middle Banner</TD>
<TD width="10%" rowspan="2">The Right Banner</TD>
</TR>
<TR>
<TD>The Main Contents with the Languages, And the Meat of the Site</TD>
</TR>
</TABLE>
What that's doing is putting a giant invisible table around the page.

I hope this helped!
LemmonLime is offline
Reply With Quote
View Public Profile Visit LemmonLime's homepage!
 
Old 11-27-2004, 11:16 PM
Average Talker

Posts: 17
Location: Manchester, UK
Trades: 0
Got enough banners?

You could put the whole page (between body tags) into a div, then shift that div to the right. Example...

In your style sheet:

.content {
margin: 0 0 0 80px;
}

.leftbanner {
position: absolute;
top: 0;
left: 0;
}

Adjust numbers as required.

On your page:

<div class="leftbanner">
Banner code here
</div>
<div class="content">
Your page here
</div>

That's the best you can do without having to delve into the code too much. It'd take some cleaning up first.
Snacky is offline
Reply With Quote
View Public Profile Visit Snacky's homepage!
 
Old 11-27-2004, 11:28 PM
Novice Talker

Posts: 8
Trades: 0
Wow! Thanks, LemmonLime, that almost did it! Check it out now! Ill try tweaking the text now. I really appreciate it!

-Edwardo911
Edwardo911 is offline
Reply With Quote
View Public Profile
 
Old 11-27-2004, 11:53 PM
Novice Talker

Posts: 8
Trades: 0
Any idea how to get the text over 1 inch? I'm trying everything I can figure out to do it.

-E
Edwardo911 is offline
Reply With Quote
View Public Profile
 
Old 11-28-2004, 10:24 AM
theshiznit's Avatar
Registered User

Posts: 214
Trades: 0
i think i know what you mean try.....

Code:
.fontsize
{
font-size:14pt;
}
theshiznit is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to HELP! How do I center this?
 

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