Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How can I expand my website to fit monitor and still on the left?

Status
Not open for further replies.
Hi Kathryn

I think you might need to do this when exporting the SWF file


Kind Regards
Duncan
 
Sorry - i was wrong - you need to change this line:-

Code:
<embed src="[URL unfurl="true"]http://www.top10googlerank.com/top10_14.swf"[/URL] quality="high" pluginspage="[URL unfurl="true"]http://www.macromedia.com/go/getflashplayer"[/URL] type="application/x-shockwave-flash" width="[red]800[/red]" height="[red]600[/red]">


Kind Regards
Duncan
 
This question falls more in general web coding but if you put the page in a table and specify:

<table width="100%">

</table>

The browser should calculate the display's screen and then insert the proper pixels.

Never use a numeric value for width, always use "__%" where
-- is any number. I make all of my students specify % , no matter what they do with right/center/left.

A complete example of a table 80% of the screen's width and then broken up into two 50% columns with 3 lines each:

<table width="80%">
<tr>
<td width="50%">
<li>
the left side data line 1
</li>
<li>
the left side data line 2
</li>
<li>
the left side data line 3
</li>
</td>
<td width="50%">
<li>
the right side data line 1
</li>
<li>
the right side data line 2
</li>
<li>
the right side data line 3
</li>
</td>
</tr>
</table>

Look at my web page at professorsparks.com for a work in progress that shows a lot of table coding including tables in tables in tables in the main page, health site link.
 
yes, this is an html question, not a CGI question. You should post html coding and layout questions in the HTML or CSS forums.
 
Professorsparkie

I hope you make your students answer questions in less than 3 months!

;-)

Kind Regards
Duncan
 
Coding tables inside tables is not the most effecient process to handle formatting of your page... It might have been standard coding practices 5 years ago, but today you should be using CSS and DIV tags in lieu of nested tables.

- George
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top