Page 1 of 1
Window/Browser background color
Posted: Mon Jun 08, 2015 1:16 am
by TheMexican
How do you set the background color of a window? Just like Purebasic command SetWindowColor()?
How do you set the background color of the Browser window?
Any ideas anyone?
Thanks!!
Re: Window/Browser background color
Posted: Mon Jun 08, 2015 7:22 am
by Peter
TheMexican wrote:How do you set the background color of the Browser window?
you can edit the background color of the body in "[SpiderBasicPath]\Libraries\JavaScript\windows-7\windows-7.css"
or you can change the color at runtime:
Code: Select all
! $("body").css("background", "white");
Greetings ... Peter
Re: Window/Browser background color
Posted: Mon Jun 08, 2015 5:26 pm
by TheMexican
How about the color of the Window?
Re: Window/Browser background color
Posted: Mon Jun 08, 2015 7:39 pm
by Peter
TheMexican wrote:How about the color of the Window?
-> windows-7.css -> spiderwindowcontent -> background-color
Greetings ... Peter
Re: Window/Browser background color
Posted: Tue Jun 09, 2015 1:14 am
by TheMexican
Thanks Peter!!
