Help with my dropdown menu?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • mromro
    So Fucking Banned
    • Jan 2011
    • 770

    #1

    Help with my dropdown menu?

    Anyone know how to fix this?
    My drop down menu is hidden behind my flash embeds.
    All the suggestions I see are to add wmode transparent to the flash object containers but I can't do that for all the videos from sponsors.
    Is there any other way to do this? I'm useing wordpress.
  • Colmike9
    (>^_^)b
    • Dec 2011
    • 7230

    #2
    The only way I could figure out how to do it was to add wmode transparent to each one..

    Anyone know of a way to add that to Flash embeds using PHP?
    Join the BEST cam affiliate program on the internet!
    I've referred over $1.7mil in spending this past year, you should join in.
    I make a lot more money in the medical field in a lab now, fuck you guys. Don't ask me to come back, but do join Chaturbate in my sig, it still makes bank without me touching shit for years..

    Comment

    • wizzart
      scriptmaster
      • May 2006
      • 5246

      #3
      Code:
      <param name="wmode" value="transparent" />
      Add that to embed object. Also it can be added with jQuery

      Code:
      $(function(){
      $('object').append('<param name="wmode" value="transparent" />');
      });
      If you using just embed without object:

      <embed wmode="transparent" ....
      Code:
      $(function(){
      $('embed').attr("wmode","transparent");
      });
      BimboZone

      Comment

      • mromro
        So Fucking Banned
        • Jan 2011
        • 770

        #4
        Yeah, I don't think I can edit each sponsors embeded video.
        How would I add that code. Don't really know where to put it or how to use it. Thanks!

        Comment

        Working...