Our site www.viart.com site is operated by latest Viart Shop 5 with default Clear design
Topic Information
cy (Guest)
cy (Guest)
We have several clients that have articles set up with streaming video and on pages where the video is close to the top of the screen the top navigation drops behind the video. I have found a fix here: http://www.flashsupport.com/forum/topic.asp?TOPIC_ID=790 but it does not make sense in the way the Viart template is setup. There is no embed or object tag in block_articles_list.html.
 
You can see an example of this at http://www.firstimpressionsecuritydoors.com/go/about-arizona-security-door-gate-sunscreen
 
Can someone help me to apply this fix (or send instructions for a different one) please?
Thanks!
 
Tony (Guest)
Tony (Guest)
Greetings
 
Hi Cy
 
You can embed or object tag directly into whatever page using plan html - for example go-to Product using editor select source and paste the video code - save and view.
 
If you require further assistance, drop us a line at HolleyLand.
 
Have a pleasant day.
 
Tony
HolleyLand.com
 
ewoud (Guest)
ewoud (Guest)
z-index maybe?
 
TOCDCO
TOCDCO
I've had the same issues and have requested ViArt to look into this Smile
 
TOCDCO
TOCDCO
Does anyone have a direct URL that would represent this error?
 
cy (Guest)
cy (Guest)
http://www.preventdrownings.org/go/articles.php?category_id=80 - then click on the Resources Menu and you will see the menu drop behind that first video
 
cy (Guest)
cy (Guest)
z-index may work but where to put it? I mean you add the url to the video in a field in the article, so I'd need to add the z-indez either in the css or in the template, but where??!!
 
Dravekx (Guest)
Dravekx (Guest)
z-index only works if you have position set.
 
just use WMODE in the flash loading html. i had the same problem with my video player, and it now drops behinnd the CSS fixed header and footer:
 
http://www.dravekx.com
 
dravekx
dravekx
add this within your <object> tag with the rest of the params:
 
<param name="wmode" value="transparent">
 
then... add this into your flash embed code:
 
wmode="transparent"
 
then... set your html between divs on top using this:
 
<div style="z-index:1;position: relative;"></div>
 
then set your flash inside a div:
 
<div style="z-index:0;position: relative;"></div>
 
Good
 
cy (Guest)
cy (Guest)
Well, this is exactly my problem. If I am looking in block_articles_list there IS NO <object> tag. Am I looking in the right place?
 
Where does that code go exactly? Sorry, I am not a coding expert!
 
dravekx
dravekx
Ahhhh. It's loading the flash via javascript...
 
If your not a coder, i honestly suggest you write up a trouble ticket and let the viart guys solve your problem. They arent very fast, but they will get it done...
 
OR
 
you can dabble in some reading, hunt down the java monster, and learn to be dangerous. Yahoo!
 
Try this link: http://www.askapache.com/css/getting-flash-to-show-up-in-front-of-content.html
 
cy (Guest)
cy (Guest)
Viart will get it done, but for a fee. That just annoys me since this is a BUG :(
 
I can do some coding in php and html but I am not "a coder" :)
 
ewoud (Guest)
ewoud (Guest)
I thought the content is already in a div, which is sitting in a table. look at the template article.html and see if you can assign a z-index there
 
ewoud (Guest)
ewoud (Guest)
sorry, i meant articles.html
 
Anjula
Anjula
Hello,
 
We've issued the fix for this problem. Please, download the patch at: http://www.viart.com/patch_for_menu_dropping_behind_flash_videos.html
 
With kind regards,
ViArt Support Team
 
nik (Guest)
nik (Guest)
dravekx , THANKS A LOT.