Webmaster Forum

Go Back   Webmaster Forum > Web Development > Coding Forum

Coding Forum Problems with your code? Discuss coding issues, including JavaScript, PHP & MySQL, HTML & CSS, Flash & ActionScript, and more.


Reply
 
LinkBack Thread Tools Display Modes
Old 06-29-2009, 08:41 AM   #1 (permalink)
Contributing Member
 
Join Date: 02-16-08
Posts: 54
iTrader: 0 / 0%
Latest Blog:
None

chillspike is liked by many
Video player blocking Bing Search pop up...

Hi,

I have this Bing search site I'm working on that is having problems here:

searchsites.ms11.net/index2.htm

When you do a search, the Bing search pop up is being blocked by the YouTube video player. This only seems to occur on Windows based PC's. I've tested it in FireFox, internet Explorer and Chrome. The pop up displays under the video player in all three browsers making quite sure it is a Windows issue.


On my iMac the search pop up displays correctly over the video player.

Is there a hack or anything to fix this?

Beyond that, I was originally trying to add a Google Custom search Box to the site...But I wanted to add my own button on the same line and directly right of the search box...If anyone could show me exactly how to do that I would be willing to switch back to a Google Custom Search Box. Thank you;.

Last edited by juliensimon; 06-29-2009 at 02:30 PM..
chillspike is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-29-2009, 08:59 AM   #2 (permalink)
Moderator
 
Hades's Avatar
 
Join Date: 01-23-07
Location: Buenos Aires
Posts: 1,062
iTrader: 0 / 0%
Hades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest order
make sure the video has the <param name="wmode" value="transparent"> to allow content to be placed above it. Also remember to set the search panel with a z-index higher than the video.

If it doesn't work, I suggest you ask in the Coding Forum for more help on this. People over there know a lot more than me
__________________
Hades,
Ancient god, King of the Nether World, and Guardian of the Dead.
...and on my free time I'm also a web developer, contact me if you need one!
Hades is online now  
Add Post to del.icio.us
Reply With Quote
Old 06-29-2009, 10:56 AM   #3 (permalink)
Contributing Member
 
Join Date: 02-16-08
Posts: 54
iTrader: 0 / 0%
Latest Blog:
None

chillspike is liked by many
Quote:
Originally Posted by Hades View Post
make sure the video has the <param name="wmode" value="transparent"> to allow content to be placed above it. Also remember to set the search panel with a z-index higher than the video.

If it doesn't work, I suggest you ask in the Coding Forum for more help on this. People over there know a lot more than me
thanks, i will try the <param tag when I get home...as for the z-index for the search panel, i don't think Bing.com will allow any alteration of their code..
chillspike is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-29-2009, 12:21 PM   #4 (permalink)
Moderator
 
Hades's Avatar
 
Join Date: 01-23-07
Location: Buenos Aires
Posts: 1,062
iTrader: 0 / 0%
Hades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest order
You don't need to modify the Bing API in order to add it a z-index, just wrap its code in a div element and add z-index to it.

HTML Code:
<div style="z-index:2"> ... bing code ... </div>
I can't guarantee that it works in this case but that's what people usually do to put content on top of a flash animation.
__________________
Hades,
Ancient god, King of the Nether World, and Guardian of the Dead.
...and on my free time I'm also a web developer, contact me if you need one!
Hades is online now  
Add Post to del.icio.us
Reply With Quote
Old 06-29-2009, 03:26 PM   #5 (permalink)
Contributing Member
 
Join Date: 02-16-08
Posts: 54
iTrader: 0 / 0%
Latest Blog:
None

chillspike is liked by many
This is what I changed the code to:

HTML Code:
<div style="z-index:2"> <p class="s"> <object width="340" height="290"><param name="wmode" value="transparent"></param><param name="wmode" value="transparent"></param><param name="wmode" value="always"></param><embed src="http://www.youtube.com/v/roRcIoO1iQY&border=1&color1=0x000000&color2=0x000000&feature=player_embedded&fs=1" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="340" height="290"></embed></object> <iframe title="chillspike" src="http://www6.shoutmix.com/?chillspike" width="380" height="290" frameborder="0" scrolling="auto"> <a href="http://www6.shoutmix.com/?chillspike">View shoutbox</a> </iframe> <br /> </p></div>
But it's not working. Perhaps I'm doing something wrong?
chillspike is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-29-2009, 03:49 PM   #6 (permalink)
Contributing Member
 
Join Date: 02-16-08
Posts: 54
iTrader: 0 / 0%
Latest Blog:
None

chillspike is liked by many
Well, I've kind of abandoned using Bing's search box for now. It's probably easier to solve the issues I was having with Google's search box.

So I've reinstalled Google's search box at my test site:

http://www.searchsites.ms11.net/index2.htm

Can you or anyone tell me how I can alter the code to have my own search button instead of Google's? I've replaced the button before with an image of mine but it doesn't line up directly to the right of the search box. I kind of lines up to the right but up a line. You can see my search button next to the google search button on my test site. I'm trying to get my rectangular button on the same line as the search box like google's search button. As you can see it's off a little.

What's even funnier is I had found the code online that worked perfectly for this but I accidentally deleted it and can't find it again.
chillspike is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-29-2009, 03:51 PM   #7 (permalink)
Moderator
 
Hades's Avatar
 
Join Date: 01-23-07
Location: Buenos Aires
Posts: 1,062
iTrader: 0 / 0%
Hades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest order
You have to wrap the search panel in a div with z-index, instead you wrapped the video.
I suggest removing the <div style="z-index:2"> and put it around the Bing code.

If that doesn't do the trick then I suggest you ask in the Coding Forum.
__________________
Hades,
Ancient god, King of the Nether World, and Guardian of the Dead.
...and on my free time I'm also a web developer, contact me if you need one!
Hades is online now  
Add Post to del.icio.us
Reply With Quote
Old 06-29-2009, 04:19 PM   #8 (permalink)
Contributing Member
 
Join Date: 02-16-08
Posts: 54
iTrader: 0 / 0%
Latest Blog:
None

chillspike is liked by many
well, i tried that and it's not working either...but i left the bing search box up along with the google search box just in case you had any other suggestions ...did i set the params for the video code correctly?
chillspike is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-29-2009, 04:24 PM   #9 (permalink)
Moderator
 
Hades's Avatar
 
Join Date: 01-23-07
Location: Buenos Aires
Posts: 1,062
iTrader: 0 / 0%
Hades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest order
I put a request to move this thread to the coding forum, surely somebody more skilled than me will give you some idea, there are some brilliant guys there
__________________
Hades,
Ancient god, King of the Nether World, and Guardian of the Dead.
...and on my free time I'm also a web developer, contact me if you need one!
Hades is online now  
Add Post to del.icio.us
Reply With Quote
Old 06-29-2009, 04:25 PM   #10 (permalink)
Contributing Member
 
Join Date: 02-16-08
Posts: 54
iTrader: 0 / 0%
Latest Blog:
None

chillspike is liked by many
how do i edit my post, julien? i want to make that second link unclickable...sorry, didn't realize we weren't allowed to post clickable links...
chillspike is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-29-2009, 04:26 PM   #11 (permalink)
Contributing Member
 
Join Date: 02-16-08
Posts: 54
iTrader: 0 / 0%
Latest Blog:
None

chillspike is liked by many
Quote:
Originally Posted by Hades View Post
I put a request to move this thread to the coding forum, surely somebody more skilled than me will give you some idea, there are some brilliant guys there
thanks, hades and thanks for your help and time.
chillspike is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-29-2009, 05:00 PM   #12 (permalink)
Super Moderator
 
htmlbasictutor's Avatar
 
Join Date: 10-29-07
Location: British Columbia, Canada
Posts: 2,969
iTrader: 0 / 0%
Latest Blog:
Website Testing

htmlbasictutor is a highly respected web prohtmlbasictutor is a highly respected web prohtmlbasictutor is a highly respected web prohtmlbasictutor is a highly respected web prohtmlbasictutor is a highly respected web prohtmlbasictutor is a highly respected web prohtmlbasictutor is a highly respected web prohtmlbasictutor is a highly respected web prohtmlbasictutor is a highly respected web prohtmlbasictutor is a highly respected web prohtmlbasictutor is a highly respected web pro
It seems to be working fine here.

When I do a test search in the top search box the results appear over top of the rest of the page.

Try clearing your browser cache. Maybe the PC is caching your work in progress.
__________________
HTML Basic Tutor - Learn to code your web pages/blogs to be cross-browser compatible
Basic Computer Information - Computer Basics for website owners
htmlbasictutor is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-29-2009, 05:17 PM   #13 (permalink)
Contributing Member
 
Join Date: 02-16-08
Posts: 54
iTrader: 0 / 0%
Latest Blog:
None

chillspike is liked by many
Quote:
Originally Posted by htmlbasictutor View Post
It seems to be working fine here.

When I do a test search in the top search box the results appear over top of the rest of the page.

Try clearing your browser cache. Maybe the PC is caching your work in progress.
are you on a mac? i don't have this problem on a mac.

also tried clearing browser cache on my other computer (not mac) and it didn't help. i'm running windows vista.
chillspike is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-29-2009, 05:34 PM   #14 (permalink)
Moderator
 
Hades's Avatar
 
Join Date: 01-23-07
Location: Buenos Aires
Posts: 1,062
iTrader: 0 / 0%
Hades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest order
I noticed that you added the wmode more than once as a <param> tag, and also it is usually recommended to add the wmode to the <embed> tag as well,

Try replacing the youtube object with this:

HTML Code:
<object width="340" height="290"><param name="wmode" value="transparent"></param><embed wmode="transparent" src="http://www.youtube.com/v/roRcIoO1iQY&border=1&color1=0x000000&color2=0x000000&feature=player_embedded&fs=1" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="340" height="290"></embed></object>
Note that I removed some <param> elements, and I added wmode="transparent" to the <embed> object. I hope it works.
__________________
Hades,
Ancient god, King of the Nether World, and Guardian of the Dead.
...and on my free time I'm also a web developer, contact me if you need one!
Hades is online now  
Add Post to del.icio.us
Reply With Quote
Old 06-29-2009, 05:43 PM   #15 (permalink)
Contributing Member
 
Join Date: 02-16-08
Posts: 54
iTrader: 0 / 0%
Latest Blog:
None

chillspike is liked by many
Worked! You must be good as I've seen threads all over the internet with responses from "it can't be done" to "it can be done but with a lot of code".

You must know your stuff. Thanks, man! Awesome!
chillspike is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-29-2009, 05:44 PM   #16 (permalink)
Contributing Member
 
Join Date: 02-16-08
Posts: 54
iTrader: 0 / 0%
Latest Blog:
None

chillspike is liked by many
While I have your expert ear:

can you tell me how I can alter the code to have my own search button instead of Google's for the google search box? I've replaced the button before with an image of mine but it doesn't line up directly to the right of the search box. It kind of lines up to the right but up a line. You can see my search button next to the google search button on my test site. I'm trying to get my rectangular button on the same line as the search box like google's search button. As you can see it's off a little.
chillspike is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-30-2009, 07:38 AM   #17 (permalink)
Moderator
 
Hades's Avatar
 
Join Date: 01-23-07
Location: Buenos Aires
Posts: 1,062
iTrader: 0 / 0%
Hades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest orderHades is a web professional of the highest order
Try replacing your google form with this:
HTML Code:
<form action="http://www.searchsites.ms11.net/results.html" id="cse-search-box"> <div style="width:350px;margin:0px auto;padding-left:50px; "> <div style="float:left;margin-top:2px;"> <input name="cx" value="013989270954656242279:8sbdjjprvxc" type="hidden"> <input name="cof" value="FORID:11" type="hidden"> <input name="ie" value="UTF-8" type="hidden"> <input style="border: 1px solid rgb(126, 157, 185); padding: 2px; background: rgb(255, 255, 255) url(http://www.google.com/coop/intl/en/images/google_custom_search_watermark.gif) no-repeat scroll left center; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" name="q" size="31" type="text"> </div> <div style="float:left; margin-left:10px;"> <input src="index2_archivos/button.jpg" alt="Submit button" type="image"> <!--<input class="text" name="sa" value="Google Search" type="submit">--> </div> </div> </form>
it's not very clean code but I wrote it quite fast and tested it from a firefox export of your page that I made, I'm not sure how it would work with other browsers.
__________________
Hades,
Ancient god, King of the Nether World, and Guardian of the Dead.
...and on my free time I'm also a web developer, contact me if you need one!
Hades is online now  
Add Post to del.icio.us
Reply With Quote
Old 06-30-2009, 09:47 AM   #18 (permalink)
Contributing Member
 
Join Date: 02-16-08
Posts: 54
iTrader: 0 / 0%
Latest Blog:
None

chillspike is liked by many
totally worked! you're 2 for 2! i just have to redo the button so it's the same size as the search box. sweet. thank you.
chillspike is offline  
Add Post to del.icio.us
Reply With Quote
Go Back   Webmaster Forum > Web Development > Coding Forum

Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Bing Hijacks IE6 Toolbar Search, Google Users Upset entrabnetworks Tech Support Forum 5 06-10-2009 03:34 AM
I have a Real player music video want to convert it to mp3. shahab6 Tech Support Forum 8 04-10-2009 12:20 PM
how can i make a video like windows media player visual effects? adambomb007 Coding Forum 4 12-03-2007 10:48 AM


Sponsor Links
Get exposure! Contextual Links V7N SEO Blog V7N Directory


All times are GMT -7. The time now is 08:44 AM.
© Copyright 2008 V7 Inc
Powered by vBulletin
Copyright © 2000-2009 Jelsoft Enterprises Limited.


Search Engine Optimization by vBSEO 3.3.0 ©2009, Crawlability, Inc.