rodentcentre
MIS
I have a site that I am designing and need some help with positioning and coloring. The layout is basically
The NAV portion holds the navigation of the application. Each of the BOXes holds a particular site (clinic) and how many assets are currently deployed to that site as well as how many open support tickets there are. The application is driven in classic ASP from a SQL 2000 backend (in case you wanted to know). I would like to know how I can do the following:
Have a new BOX created for each site retrieved from the database and aligned and sized properly; I would like to have 3 BOXes across and as many as needed going down the page. I would like the size (width) to accomodate for 40 characters wide and be the same height across the board (it will store the site abbreviation (max 10 chars), a space, a hyphen, a space, and then the site description (max 50 chars) on one line, Assets Deployed: <number> on another line, and Open Tickets: <number> on another line; if the site description wraps to the next line it needs to take it into account and keep all of the BOXes the same height). When a user hovers the mouse over the BOX I would like for the BOX to have a gradient color and when the mouse leaves I would like the original color to come back, also in the hovering action I would like for the whole BOX to act as a hyperlink to take the user to the main support page for that site. I hope I am making myself clear enough, I suck at design and layout so I'm trying my best. thanks.
Code:
|-----|----------------------------|
| | |------| |------| |------| |
| | | | | | | | |
|NAV | | BOX | | BOX | | BOX | |
| | |------| |------| |------| |
| | |
| | |------| |------| |------| |
| | | | | | | | |
| | | BOX | | BOX | | BOX | |
| | |------| |------| |------| |
| | |
|_____| |
| |
|----------------------------------|
The NAV portion holds the navigation of the application. Each of the BOXes holds a particular site (clinic) and how many assets are currently deployed to that site as well as how many open support tickets there are. The application is driven in classic ASP from a SQL 2000 backend (in case you wanted to know). I would like to know how I can do the following:
Have a new BOX created for each site retrieved from the database and aligned and sized properly; I would like to have 3 BOXes across and as many as needed going down the page. I would like the size (width) to accomodate for 40 characters wide and be the same height across the board (it will store the site abbreviation (max 10 chars), a space, a hyphen, a space, and then the site description (max 50 chars) on one line, Assets Deployed: <number> on another line, and Open Tickets: <number> on another line; if the site description wraps to the next line it needs to take it into account and keep all of the BOXes the same height). When a user hovers the mouse over the BOX I would like for the BOX to have a gradient color and when the mouse leaves I would like the original color to come back, also in the hovering action I would like for the whole BOX to act as a hyperlink to take the user to the main support page for that site. I hope I am making myself clear enough, I suck at design and layout so I'm trying my best. thanks.