Page 2 of 2

Background Image Fails to Load

Posted: Tue May 07, 2013 10:42 pm
by Alena Prykhodko

I've tested it and it's working.
Try to delete and add the event again (StartScreen, Load Event, Run JavaScript Action.).


Background Image Fails to Load

Posted: Tue May 07, 2013 11:01 pm
by Darius Mack5830129

No still not working, I guess I will play around with it. Thank you


Background Image Fails to Load

Posted: Wed May 08, 2013 8:36 am
by Oleg Danchenkov

Hi Darius.
"mobilecontainer1" - is a reserved name for all mobilecontainers in all pages. Real name of mobilecontainer on this particular page may differs from "mobilecontainer1".
If you want to change background on this particular page on "Page load" or "Page show" event, try to rename mobilecontainer on this page from "mobilecontainer1" to some other name. For example "mobContainer". And use this code:
codeAppery('mobContainer').css('background-image','url("http://blastdfw.com/blast/blastbck.jpg")');
/code
Or if you don't need to change backround dynamically you can set class name for mobilecontainer (for example niceBackground) and add css with code:
code.niceBackground{
background-image: url("http://blastdfw.com/blast/blastbck.jpg");
}/code