Update of /cvsroot/wxlua/website
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv27157
Modified Files:
index.php
Log Message:
trying to fix stack order
Index: index.php
===================================================================
RCS file: /cvsroot/wxlua/website/index.php,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -d -r1.19 -r1.20
*** index.php 19 Jul 2006 19:09:02 -0000 1.19
--- index.php 15 Sep 2006 10:10:33 -0000 1.20
***************
*** 8,15 ****
<!-- ##### News sidebar ##### -->
! <div class="rightSideBar">
<p class="sideBarTitle">News</p>
! <!-- we want this box to be always on top of others -->
! <div class="sideBarText" style="z-index: 1000"><?php include_once("news.inc.php"); ?></div>
</div>
--- 8,15 ----
<!-- ##### News sidebar ##### -->
! <!-- we want this box to be always on top of others -->
! <div class="rightSideBar" style="z-index: 1000">
<p class="sideBarTitle">News</p>
! <div class="sideBarText"><?php include_once("news.inc.php"); ?></div>
</div>
***************
*** 29,33 ****
<p>Want an example of how easy it is to write a cross-platform GUI? Here is a simple lua script which creates a
wxFrame top level window and a menubar, just add your program to it:</p>
! <?php include_once("luasample.lua.html"); ?>
<p>Easy, isn't it ? You can see more samples <a href="http://wxlua.cvs.sourceforge.net/wxlua/wxLua/samples/">here</a>.</p>
--- 29,33 ----
<p>Want an example of how easy it is to write a cross-platform GUI? Here is a simple lua script which creates a
wxFrame top level window and a menubar, just add your program to it:</p>
! <div style="z-index: 0"><?php include_once("luasample.lua.html"); ?></div>
<p>Easy, isn't it ? You can see more samples <a href="http://wxlua.cvs.sourceforge.net/wxlua/wxLua/samples/">here</a>.</p>
|