Forum: HTML and CSS 13 Days Ago |
| Replies: 6 Views: 349 ul#navigation {
position: fixed;
top: 10px;
left: 10px;
}
/* place the ul with the ID navigation 10px from the top-left corner of the screen */ |
Forum: HTML and CSS 13 Days Ago |
| Replies: 6 Views: 349 When you use position:fixed you have to use the left and top CSS properties to position it on the page. |
Forum: HTML and CSS 13 Days Ago |
| Replies: 6 Views: 349 Use position:fixed which will keep the element in the same place on the screen even if the user scrolls the page. Also, Java != Javascript |
Forum: HTML and CSS 13 Days Ago |
| Replies: 4 Views: 353 You could use a <span> tag or (this may not be cross-browser compatible) you can use the first-line pseudo-selector on the div like so
div#someID { font-size: 1.8em; }
div#someID:first-line {... |
Forum: HTML and CSS Jun 22nd, 2009 |
| Replies: 4 Views: 848 <a href="blah" title="This is your title">some link</a>
You answered your own question |
Forum: HTML and CSS Jun 22nd, 2009 |
| Replies: 1 Views: 315 div matches a div tag, p matches any p tag under a div and * matches anything under the p tag. It's called CASCADING Stylesheets for a reason. |
Forum: HTML and CSS Jun 1st, 2009 |
| Replies: 5 Views: 675 a:link, a:visited, a:active { text-decoration: none} Should be outside of the body{} block. Move it, that should fix it.
Same goes for .mainrow near the bottom. You can't nest CSS selectors like... |
Forum: HTML and CSS Jun 1st, 2009 |
| Replies: 5 Views: 675 What exactly isn't working in safari/chrome (specifically what part of the CSS isn't working)? The PHP has nothing to do with it I can tell you that. |
Forum: HTML and CSS Jun 1st, 2009 |
| Replies: 7 Views: 385 HAHA, fire the developer, there's your feedback. Stylesheets promote a centralized design(reusability, consistency, etc.) They save time, are (most of the time) completely cross-browser... |
Forum: HTML and CSS Jan 25th, 2008 |
| Replies: 3 Views: 6,066 <td id="first">
V
<td class="first"> |
Forum: HTML and CSS Jan 10th, 2008 |
| Replies: 9 Views: 1,145 heh, just noticed that. Don't have an anchor on a button, just use the onclick attribute of the button. |
Forum: HTML and CSS Jan 10th, 2008 |
| Replies: 9 Views: 1,145 The only thing I could think of is that the href isn't the first thing but for some reason I think that's a longshot. It's worth a shot nonetheless. I'm not, however, familiar with that webbot stuff |
Forum: HTML and CSS Jan 10th, 2008 |
| Replies: 9 Views: 1,145 Well considering you haven't shown us any of the code or a link to the page it's a bit like diagnosing a patient that hasn't told you any symptoms. |