
- Forum
» Site Navigation
3 members and 727 guests
Most users ever online was 47,180, 07-16-2025 at 05:30 PM.
» Today's Birthdays
» Stats
Members: 75,904
Threads: 249,100
Posts: 2,572,075
Top Poster: JLC (31,651)
|
-
Web nerds!
Quote:
#x-site-flagnav .x-menu-opts,#x-site-flagnav .x-menu-opts li{padding-bottom:0px;width:225px}
.x-menu-opts .x-site-ratings-box a,.x-menu-opts .x-site-flag-box a{margin-bottom:1px !important}
* html .x-menu-opts .x-site-ratings-box a,* html .x-menu-opts .x-site-flag-box
a{position:relative;z-index:99999;margin-bottom:-1px !important}
Am I retarded? What the heck is that "#" for? And the "*"???
... I am so far behind all this new fangled technology... :rolleyes:
-
Re: Web nerds!
Quote:
Originally Posted by littleindiangirl
Am I retarded? What the heck is that "#" for? And the "*"???
... I am so far behind all this new fangled technology... :rolleyes:
The # signifies an id and must be unique for a given page/view.
example:
Code:
#header {
width: 760px;
padding: 5px 5px;
margin: 10px;
background: #FF0000;
}
usage:
Code:
<div id="header"> ... header content ... </div>
The star html is for IE6 poc and below. Other browsers will ignore this piece of code.
Code:
*html .example_class {
margin: 0;
padding: 0;
}
-
Re: Web nerds!
Awesome! Rock on Iceman. \m/
-
Re: Web nerds!
Would it be possible to use Crystal Reports, or "something" to be able to update your website without having to go in and mess with the code by hand? I'm just tryin to brainstorm how to work a kind of inventory into my layout. Or even just for daily updates, just upload right from the desktop.
|