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.

Website Design Forum


You are currently viewing our Website Design Forum as a guest. Please register to participate.
Login



Freelance Jobs

Reply
Problems embedding youtube with Dreamweaver
Old 10-22-2009, 03:00 PM Problems embedding youtube with Dreamweaver
Junior Talker

Posts: 2
Name: Dave
Trades: 0
Be Kind! I'm a newbie and really not a web master, but doing my best to develope my own site www.newhorizonsaviation.net

If you click on the above site (I hid this til I get it right) and click on the reference tab (upper right) you will then find a link on the nav section to Safety Spotlight Series. Click on the link and you'll find my problem.

All of my pages (CSS) have been formatted to look similar. When I embedded the youtube active X control, I can no longer support text to the right of the image, as in every other page on the site.

Can anyone tell me what I am doing wrong?
HorizonsDave is offline
Reply With Quote
View Public Profile Visit HorizonsDave's homepage!
 
 
Register now for full access!
Old 10-22-2009, 03:03 PM Re: Problems embedding youtube with Dreamweaver
Clarence_82's Avatar
Skilled Talker

Posts: 90
Name: Clarence
Trades: 0
It works good in FireFox but not IE. Just make a table right there and divide it into two columns. Put the youtube video in the left and your text in the right.
__________________
-Clarence Cowan

Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
Clarence_82 is offline
Reply With Quote
View Public Profile
 
Old 10-22-2009, 03:18 PM Re: Problems embedding youtube with Dreamweaver
Junior Talker

Posts: 2
Name: Dave
Trades: 0
Thank you so much for the advice Clarence.

It does cause another problem, but perhaps the fix is here as well.

My site doesn't do well going from computer to computer. Resolution changes cause text to jump around on different peoples set ups.

On my screen it looks fantastic, go somewhere else and the pictures are huge, the text squished. I tried to find a way to set it up using percentages of screen size, but couldn't find that option in dreamweaver.

To the point - will the tables allow me to keep my image as I laid it out, in other words will they shrink the content to fit individual screens?

Thanks again
HorizonsDave is offline
Reply With Quote
View Public Profile Visit HorizonsDave's homepage!
 
Old 10-22-2009, 05:58 PM Re: Problems embedding youtube with Dreamweaver
StylaStyla's Avatar
Mad Man

Posts: 401
Name: Styla
Location: City of London
Trades: 0
Quote:
Originally Posted by HorizonsDave View Post

To the point - will the tables allow me to keep my image as I laid it out, in other words will they shrink the content to fit individual screens?

Thanks again
Your layout is a liquid layout (based on percentages) so it will vary from screen to screen. If you're adamant on a fixed and consistent look then I would suggest that you go for a fixed width layout; standard size ranging from 950-990pixels which will mean that no matter the resolution (1024 and above) - it will look the same.

My personal preference is fixed layouts however websites such as this forum are better suited to its liquid form and I think your website looks good on my 1280 x 1024 resolution.


FYI, to make it a fixed width; change the value in your CSS file to 980px
Code:
#masthead{
    position: absolute;
    top: 0px;
    left: 2%;
    right: 2%;
    width:95.6%;
Now to fix your first problem, you need to open up that page and you'll see that you have set the width of the table at "1135" which is beyond a safety margin. change the value to 100% or less so it will be contained within your layout
HTML Code:
<table width="1135" height="400" border="1" cellpadding="10" cellspacing="0">
Also, on your safety page you have linked to a document on your local computer and not server
HTML Code:
<img alt="" src="file:///C|/Program%20Files%20(x86)/Macromedia/Dreamweaver%208/Configuration/BuiltIn/PageDesigns/images/tl_curve_white.gif" height="6" width="6" id="tl" /> <img alt="" src="file:///C|/Program%20Files%20(x86)/Macromedia/Dreamweaver%208/Configuration/BuiltIn/PageDesigns/images/tr_curve_white.gif" height="6" width="6" id="tr" />
__________________
Freelance Graphic Designer not for hire

Last edited by StylaStyla; 10-22-2009 at 05:59 PM..
StylaStyla is offline
Reply With Quote
View Public Profile Visit StylaStyla's homepage!
 
Old 10-25-2009, 06:40 AM Re: Problems embedding youtube with Dreamweaver
forkboy's Avatar
Novice Talker

Posts: 5
Trades: 0
Quote:
Originally Posted by JSTYLISH View Post
Your layout is a liquid layout (based on percentages) so it will vary from screen to screen. If you're adamant on a fixed and consistent look then I would suggest that you go for a fixed width layout; standard size ranging from 950-990pixels which will mean that no matter the resolution (1024 and above) - it will look the same.

My personal preference is fixed layouts however websites such as this forum are better suited to its liquid form and I think your website looks good on my 1280 x 1024 resolution.


FYI, to make it a fixed width; change the value in your CSS file to 980px
Code:
#masthead{
    position: absolute;
    top: 0px;
    left: 2%;
    right: 2%;
    width:95.6%;
Now to fix your first problem, you need to open up that page and you'll see that you have set the width of the table at "1135" which is beyond a safety margin. change the value to 100% or less so it will be contained within your layout
HTML Code:
<table width="1135" height="400" border="1" cellpadding="10" cellspacing="0">
Also, on your safety page you have linked to a document on your local computer and not server
HTML Code:
<img alt="" src="file:///C|/Program%20Files%20(x86)/Macromedia/Dreamweaver%208/Configuration/BuiltIn/PageDesigns/images/tl_curve_white.gif" height="6" width="6" id="tl" /> <img alt="" src="file:///C|/Program%20Files%20(x86)/Macromedia/Dreamweaver%208/Configuration/BuiltIn/PageDesigns/images/tr_curve_white.gif" height="6" width="6" id="tr" />

+1 thanks for sharing the step by step instructions and for the screenshots.. Great help!
__________________

Please login or register to view this content. Registration is FREE

Please login or register to view this content. Registration is FREE
forkboy is offline
Reply With Quote
View Public Profile
 
Old 10-25-2009, 03:03 PM Re: Problems embedding youtube with Dreamweaver
Novice Talker

Posts: 7
Name: Peter
Trades: 0
Quote:
Originally Posted by JSTYLISH View Post
Your layout is a liquid layout (based on percentages) so it will vary from screen to screen. If you're adamant on a fixed and consistent look then I would suggest that you go for a fixed width layout; standard size ranging from 950-990pixels which will mean that no matter the resolution (1024 and above) - it will look the same.

My personal preference is fixed layouts however websites such as this forum are better suited to its liquid form and I think your website looks good on my 1280 x 1024 resolution.


FYI, to make it a fixed width; change the value in your CSS file to 980px
Code:
#masthead{
    position: absolute;
    top: 0px;
    left: 2%;
    right: 2%;
    width:95.6%;
Now to fix your first problem, you need to open up that page and you'll see that you have set the width of the table at "1135" which is beyond a safety margin. change the value to 100% or less so it will be contained within your layout
HTML Code:
<table width="1135" height="400" border="1" cellpadding="10" cellspacing="0">
Also, on your safety page you have linked to a document on your local computer and not server
HTML Code:
<img alt="" src="file:///C|/Program%20Files%20(x86)/Macromedia/Dreamweaver%208/Configuration/BuiltIn/PageDesigns/images/tl_curve_white.gif" height="6" width="6" id="tl" /> <img alt="" src="file:///C|/Program%20Files%20(x86)/Macromedia/Dreamweaver%208/Configuration/BuiltIn/PageDesigns/images/tr_curve_white.gif" height="6" width="6" id="tr" />

The step by step instruction has been very helpful. Added with the screen shot, it has become more graphical and easier to follow. Thanks for the information.
__________________

Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
peter carri is offline
Reply With Quote
View Public Profile
 
Old 11-05-2009, 11:20 AM Re: Problems embedding youtube with Dreamweaver
Clarence_82's Avatar
Skilled Talker

Posts: 90
Name: Clarence
Trades: 0
Yes, you can set the tables to be percentages if you want to keep the liquid type layout. This will still make sure that your picture stays next to the text.
__________________
-Clarence Cowan

Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
Clarence_82 is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Problems embedding youtube with Dreamweaver
 

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