Search Results

Showing results 1 to 35 of 35
Search took 0.09 seconds.
Search: Posts Made By: ShawnCplus ; Forum: HTML and CSS and child forums
Forum: HTML and CSS 32 Days Ago
Replies: 1
Views: 461
Posted By ShawnCplus
Short answer: Yup. Unless you override it with a more specific selector and color it'll inherit (hence the Cascade in Cascading Style Sheets)
Forum: HTML and CSS Nov 16th, 2009
Replies: 6
Views: 523
Posted By ShawnCplus
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 Nov 16th, 2009
Replies: 6
Views: 523
Posted By ShawnCplus
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 Nov 16th, 2009
Replies: 6
Views: 523
Posted By ShawnCplus
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 Nov 16th, 2009
Replies: 4
Views: 494
Posted By ShawnCplus
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 Aug 5th, 2009
Replies: 1
Views: 446
Posted By ShawnCplus
they're called subdomains and it's almost always not page1.domain.com it's subsite.domain.com

You don't want to use subdomains for individual pages and whether it's a subdomain or a normal page...
Forum: HTML and CSS Jul 14th, 2009
Replies: 4
Views: 474
Posted By ShawnCplus
Lightbox, thickbox, tightbox, use Google and take your pick.
Forum: HTML and CSS Jun 22nd, 2009
Replies: 4
Views: 945
Posted By ShawnCplus
<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
Solved: CSS
Views: 323
Posted By ShawnCplus
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 22nd, 2009
Replies: 1
Views: 293
Posted By ShawnCplus
Well whether you're using a GUI or not you're writing HTML. And GUI is a very broad term, I'm pretty sure your teacher meant WYSIWYG. Go google WYSIWYG and you'll have your answer. Future note: use...
Forum: HTML and CSS Jun 8th, 2009
Replies: 2
Views: 841
Posted By ShawnCplus
You can't have multiple -- in an HTML comment aside from the --> at the end, it's invalid. Secondly, you forgot the > on the beginning body tag.

<body>
<!--body positioning-->
<div...
Forum: HTML and CSS Jun 1st, 2009
Replies: 5
Views: 690
Posted By ShawnCplus
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: 690
Posted By ShawnCplus
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
Solved: CSS Yes or No
Views: 405
Posted By ShawnCplus
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 May 18th, 2009
Replies: 3
Views: 579
Posted By ShawnCplus
Firstly, sqred isn't a property, its a class. Secondly, how else would you use an image without sending a request? (There are ways to do it by base64-encoding the image but it doesn't work in IE). If...
Forum: HTML and CSS Apr 16th, 2009
Replies: 2
Views: 584
Posted By ShawnCplus
What do you mean? rows/cols attributes work the same as far as I know
Forum: HTML and CSS Sep 12th, 2008
Replies: 4
Views: 5,293
Posted By ShawnCplus
There are really only two ways until the CSS3 @fontface proposal makes it's way through. One is to pass it through a server-side language which will make an image to replace the text, the other is...
Forum: HTML and CSS Apr 11th, 2008
Replies: 3
Views: 777
Posted By ShawnCplus
Well making the background dark is pretty easy with CSS (Modal CSS), however, the fading part requires some javascript. However, it is possible. to get CSS/DHTML to be completely cross-browser...
Forum: HTML and CSS Mar 28th, 2008
Replies: 2
Views: 693
Posted By ShawnCplus
The simplest solution I've found, and many others since it seemed to spread across the web like wildfire, is the JW Media Player (jeroenwijering.com). It is a flash based media player with an...
Forum: HTML and CSS Feb 27th, 2008
Replies: 13
Views: 2,231
Posted By ShawnCplus
Well HTML isn't a programming language so, no you can't use HTML to do that. PHP has a pretty powerful library (the GD library) to work with images however.
Forum: HTML and CSS Feb 27th, 2008
Replies: 13
Views: 2,231
Posted By ShawnCplus
What do you want it to do? You didn't really explain that.
To have an image in a page you do
<img src='image location' alt='If it doesn't show up' />
for a favicon it's
<link rel='shortcut icon'...
Forum: HTML and CSS Jan 25th, 2008
Replies: 3
Solved: css class:hover
Views: 6,373
Posted By ShawnCplus
<td id="first">
V
<td class="first">
Forum: HTML and CSS Jan 17th, 2008
Replies: 7
Views: 1,864
Posted By ShawnCplus
.tabbar_homepage li.current a b {
To explain what this is doing we have the first bit .tabbar_homepage which means that what we're going to be working with is anything with that class applied....
Forum: HTML and CSS Jan 10th, 2008
Replies: 7
Views: 4,822
Posted By ShawnCplus
Just to see what happens set try and set the z-index of the div to something high, the div might be actually disappearing behind the table.
Forum: HTML and CSS Jan 10th, 2008
Replies: 9
Views: 1,155
Posted By ShawnCplus
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,155
Posted By ShawnCplus
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,155
Posted By ShawnCplus
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.
Forum: HTML and CSS Jan 10th, 2008
Replies: 7
Views: 4,822
Posted By ShawnCplus
Well wrapping a td in a div is sort of like mixing sugar and salt. Table cells are used because their alignment and size will be uniform to the surrounding cells, divs are used for general content...
Forum: HTML and CSS Jan 9th, 2008
Replies: 18
Views: 2,252
Posted By ShawnCplus
Unfortunately this debate will be rendered moot with the release of IE8 and Firefox 3 since both pass the Acid test (http://www.webstandards.org/files/acid2/test.html) with flying colors. I know,...
Forum: HTML and CSS Dec 19th, 2007
Replies: 4
Views: 1,955
Posted By ShawnCplus
Make sure you're surrounding your values with quotes or it could create malformed HTML
Forum: HTML and CSS Dec 19th, 2007
Replies: 4
Views: 1,955
Posted By ShawnCplus
Well a label tag works in this way

<label for="test">Test:</label>
<input type="radio" name="test" />

You place your label's target outside of the label tags
Forum: HTML and CSS Dec 19th, 2007
Replies: 3
Views: 2,725
Posted By ShawnCplus
To put it in extremely simple terms and in more detail than I could http://www.redmelon.net/tstme/box_model/
Move the perspective slider all the way to the right to make it a bit more clear.
Forum: HTML and CSS Dec 19th, 2007
Replies: 3
Views: 529
Posted By ShawnCplus
There is much debate over modal design in web development so don't go hog wild and pop up a modal form for everything since it will quickly frustrate your users.
Forum: HTML and CSS Dec 19th, 2007
Replies: 3
Views: 529
Posted By ShawnCplus
It's called a lighbox. Doing a google search for lightbox will pop up countless results though the best is probably this one http://www.huddletogether.com/projects/lightbox/
Forum: HTML and CSS Dec 18th, 2007
Replies: 4
Views: 1,705
Posted By ShawnCplus
Well first and foremost I wouldn't consider MySpace the best place for a professional business website. However, you don't need any programs to style MySpace it just involves taking hold of the...
Showing results 1 to 35 of 35

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC