How To: Customize WebLook DBMS with CSS
Cascading Style Sheets (CSS) are a simple way to add style (e.g. fonts, colors, spacing) to Web documents. The WebLook DBMS employs the use of CSS to tell the browser how to render the Search, Results and Data pages. Through this mechanism you may change the look of the pages to match your website.
There is a separate CSS file for each of these three pages. They are stored in the project directory, which means that you have the opportunity to modify the style for each project.
Search Page - WLDB_Search.css
Results Page - WLDB_QueryResults.css
Data Page - WLDB_Data.css
Below is a listing of the HTML elements that are included in each of the style sheets. This is certainly not a diffinitive list. Please refer to one of the many fine resources for learning about the use of CSS.
BODY
{
background-color: beige
}
Table
{
color: black;
text-align: left;
vertical-align: Top;
border: outset 1px
}
TH
{
color: black;
text-align: left;
vertical-align: top;
border: inset 1px
}
TD
{
color: black;
text-align: left;
vertical-align: top;
border: inset 1px
}
H1
{
color: blue;
font-size: 24pt
}
P
{
color: black;
font-size: 12pt
}
INPUT
{
}
SELECT
{
}
A.hotspot
{
text-decoration: none;
color: black
}
|
|