Forum: HTML and CSS May 11th, 2009 |
| Replies: 10 Views: 1,202 Mmmm thats strange,
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>... |
Forum: HTML and CSS May 11th, 2009 |
| Replies: 10 Views: 1,202 if you use
table {background-color: #ff0000;}
you don't need to add class or id to your table, it will change all table background to #ff0000 |
Forum: HTML and CSS Jul 15th, 2008 |
| Replies: 11 Views: 1,977 mmm i think there's no solution to fit all of your image in 25x25 cell (because your images not all in square). If you push it that way you can set default value for height or width in your php... |
Forum: HTML and CSS May 13th, 2008 |
| Replies: 3 Views: 3,162 Try it like this Borderline
.links a:link {
color: #000000;
background-color:#99ccfb;
border: 1px solid #000000;
padding: 5;
text-decoration:none;
} |
Forum: Site Layout and Usability May 9th, 2008 |
| Replies: 2 Views: 3,409 i usually use photoshop for my designs, you must rearrange your design in dreamweaver ( don't use export result ) about rollover navigation, you can create it in dreamweaver too.
Basically you just... |
Forum: HTML and CSS May 7th, 2008 |
| Replies: 6 Views: 5,042 mmm its strange ....
i think i need to see your page 1st
but u can try to add background to your body instead of #container like this
body{
background-image: url("");
background-color:... |
Forum: HTML and CSS May 4th, 2008 |
| Replies: 6 Views: 5,042 #container
{
background-image: url(...) left top repeat;
}
try it like that, ( adjust background position and repeat behavior base on your need )
in the code above your background will... |
Forum: HTML and CSS Apr 1st, 2008 |
| Replies: 5 Views: 1,640 if u using css, you must change it first
atribute like "float, padding, margin, etc" will affect your layout
so you can't just swap it in your html code, u need to change your css first |
Forum: PHP Mar 4th, 2008 |
| Replies: 7 Views: 646 I think silviuks, is right, you not using $bg as background color (you just set its value). |
Forum: PHP Jan 16th, 2008 |
| Replies: 10 Views: 1,102 hi, there's a mistake in my earlier code
here's the right one ( i've tried it)
first u must make a hidden field in your form for number of textbox
example "<input name="textbox_num" type="hidden"... |
Forum: PHP Jan 16th, 2008 |
| Replies: 10 Views: 1,102 try it like this
for($i=0;$<$number_of_textboxes;$i++){
$txtboxname = $txt.$i;
$textbox_value .= $_POST[$txtboxname] ;
$textbox_value .= "<br>"; //one value per line
}
... |
Forum: PHP Jan 3rd, 2008 |
| Replies: 24 Views: 5,374 hi dan maybe u can check php.net theres a good resources to learn it, and u can download php manual there .... |