Can someone help me?

This is a discussion on "Can someone help me?" within the Web Page Design section. This forum, and the thread "Can someone help me? are both part of the Design Your Website category.



Go Back   Webforumz.com > Main Forums > Design Your Website > Web Page Design

Notices


Reply
 
LinkBack (2) Thread Tools
  2 links from elsewhere to this Post. Click to view. #1 (permalink)  
Old Nov 23rd, 2006, 03:45
Junior Member
Join Date: Nov 2006
Location: California
Age: 19
Posts: 13
Thanks: 0
Thanked 0 Times in 0 Posts
Can someone help me?

Im having problems with alligning a video in my website. the site address is www.cfcfighters.com/473.html im on msn messenger right now. I dont know wuts wrong with the code but the video wont allign. My msn messenger address is the87thking@hotmail.com. Please someone help me. I want to get the rest of the vids on tonight. Please and thank you.
Reply With Quote

  #2 (permalink)  
Old Nov 23rd, 2006, 06:23
Reputable Member
Join Date: Sep 2006
Location: Rothwell
Posts: 146
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to chubbs Send a message via Skype™ to chubbs
Re: Can someone help me?

looks ok in opera...
Reply With Quote
  #3 (permalink)  
Old Nov 23rd, 2006, 09:50
Ryan Fait's Avatar
SuperMember

SuperMember
Join Date: May 2006
Location: Las Vegas
Posts: 3,786
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Can someone help me?

How do you want to align them?
Reply With Quote
  #4 (permalink)  
Old Nov 23rd, 2006, 17:10
Junior Member
Join Date: Nov 2006
Location: California
Age: 19
Posts: 13
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Can someone help me?

I want to have them alligned in the middle. The way the first video is. But as soon as i ad a paragraph description of the second video. It shoots it over to the left. And i think that looks tacky.
Reply With Quote
  #5 (permalink)  
Old Nov 23rd, 2006, 17:42
Ryan Fait's Avatar
SuperMember

SuperMember
Join Date: May 2006
Location: Las Vegas
Posts: 3,786
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Can someone help me?

Try adding this to your CSS:

Code: Select all
embed {
    text-align: center;
}
Reply With Quote
  #6 (permalink)  
Old Nov 23rd, 2006, 17:54
Junior Member
Join Date: Nov 2006
Location: California
Age: 19
Posts: 13
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Can someone help me?

Im on msn messenger at the87thking@hotmail.com if you might maybe want to get on and help me there please ryan. umm cuz honestly i have no idea where i would put that text at. But im going to fiddle around with it and see if i do it right.
Reply With Quote
  #7 (permalink)  
Old Nov 23rd, 2006, 17:58
Ryan Fait's Avatar
SuperMember

SuperMember
Join Date: May 2006
Location: Las Vegas
Posts: 3,786
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Can someone help me?

Put it in like this:
Code: Select all
<head>

    <style type="text/css">
        embed {
            text-align: center;
        }
    </style>

</head>
It's really not the proper way of implementing it, but your code is so messy anyway, I see no point in making this harder.
Reply With Quote
  #8 (permalink)  
Old Nov 23rd, 2006, 18:08
Junior Member
Join Date: Nov 2006
Location: California
Age: 19
Posts: 13
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Can someone help me?

AH! i was try to edit some stuff and now its different! Will this code still work? www.cfcfighters.com/473.html i have no idea wut happened.
Reply With Quote
  #9 (permalink)  
Old Nov 23rd, 2006, 18:13
Ryan Fait's Avatar
SuperMember

SuperMember
Join Date: May 2006
Location: Las Vegas
Posts: 3,786
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Can someone help me?

The code should work as long as you're using embed to put the videos on there, but right now all I get is a blank page.
Reply With Quote
  #10 (permalink)  
Old Nov 23rd, 2006, 18:16
Junior Member
Join Date: Nov 2006
Location: California
Age: 19
Posts: 13
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Can someone help me?

Like this? Do i add that code to the video? or the paragraph?


</SCRIPT><embed style="width:400px; height:326px;" id="VideoPlayback" type="application/x-shockwave-flash" src="http://video.google.com/googleplayer...57446341&hl=en" flashvars=""> </embed><SCRIPT>

</SCRIPT><head>
<style type="text/css">
embed {
text-align: center;
}
</style>
</head><P>This was a fight between Michael and Daniel. The rules in this fight were.. Submissions were legal. Punches were allowed. Tapping was an option. No kicks. We had our 9 ounce gloves, head gear and mouth peices.<BR clear="all"></P><P><BR clear="all"></P><CENTER></CENTER></TD><TD rowspan="2"><SCRIPT>
Reply With Quote
  #11 (permalink)  
Old Nov 23rd, 2006, 18:25
Ryan Fait's Avatar
SuperMember

SuperMember
Join Date: May 2006
Location: Las Vegas
Posts: 3,786
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Can someone help me?

No, no. The basic structure for a web page is:

Code: Select all
<html>
    <head>
        Stuff like scripts and CSS go here.
    </head>
    <body>
        All content goes here.
    </body>
</html>
Look for the head tags in your page and put the code I gave you inside those (excluding the <head> tags I typed).
Reply With Quote
  #12 (permalink)  
Old Nov 23rd, 2006, 18:31
Junior Member
Join Date: Nov 2006
Location: California
Age: 19
Posts: 13
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Can someone help me?

Can i put it all in one line or does it have to have the spaces?

<style type="text/css"> embed { text-align: center; } </style>

Can it be like that?^
Reply With Quote
  #13 (permalink)  
Old Nov 23rd, 2006, 18:33
Junior Member
Join Date: Nov 2006
Location: California
Age: 19
Posts: 13
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Can someone help me?

I just added it like that straight line and nothing happened. Will putting it in the beggining like that really make all the videos line up? I wouldnt add code to the embedded videos?
Reply With Quote
  #14 (permalink)  
Old Nov 23rd, 2006, 20:01
Ryan Fait's Avatar
SuperMember

SuperMember
Join Date: May 2006
Location: Las Vegas
Posts: 3,786
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Can someone help me?

It should work, but most likely, it's because you've got so many HTML errors. Fix these and let's see what we have:

http://validator.w3.org/check?uri=ht...doctype=Inline
Reply With Quote
Reply

Tags
html help

Thread Tools

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 On
Pingbacks are On
Refbacks are On

LinkBacks (?)
LinkBack to this Thread: http://www.webforumz.com/web-page-design/10430-can-someone-help-me.htm
Posted By For Type Date
Im trying to get some help.... On a diff website and this guy stopped helping me This thread Refback Nov 23rd, 2006 22:56
Im trying to get some help.... On a diff website and this guy stopped helping me This thread Refback Nov 23rd, 2006 20:11


All times are GMT. The time now is 02:13.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43