Forum: HTML and CSS Jan 25th, 2008 |
| Replies: 1 Views: 461 I believe you are referring to a Content Management System. This should help: http://en.wikipedia.org/wiki/Content_management_system |
Forum: HTML and CSS Jun 6th, 2007 |
| Replies: 2 Views: 2,626 I'm pretty sure they were wanting to know how to do this on their own web site... not here. |
Forum: HTML and CSS May 29th, 2007 |
| Replies: 1 Views: 818 <link rel="shortcut icon" href="images/favicon.ico" />
I believe that the image has to be '.ico. format.
Hope this helps.
EDIT:
I forgot to mention... This goes in the <head></head> tags
... |
Forum: HTML and CSS May 10th, 2007 |
| Replies: 7 Views: 2,633 You can call the css like this:
<link rel="stylesheet" href="../css_directory/style.css" />
Each time you put " ../ " in there, it goes up to that folders parent directory. Once you get to the... |
Forum: HTML and CSS May 9th, 2007 |
| Replies: 2 Views: 2,712 table { border-color: #cc3300; }
td { border-color: #cc3300; }
or you can combine the two commands into one:
table { border: 1px dashed #cc3300; }
Hope this helps.
Nick |
Forum: HTML and CSS May 7th, 2007 |
| Replies: 8 Views: 1,683 Google Offers a custom search for free.
http://google.com/coop/cse/ |
Forum: HTML and CSS Apr 27th, 2007 |
| Replies: 2 Views: 4,247 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Untitled Document</title>
<link rel="stylesheet" type="text/css" href="assets/style.css" />
<style... |
Forum: HTML and CSS Apr 12th, 2007 |
| Replies: 9 Views: 5,555 I don't believe that you can have two backgrounds for one element. However, Let's say you have a <div>, and then inside that, you use something like <h1>. Both the <div> and the <h1> element can have... |
Forum: HTML and CSS Apr 11th, 2007 |
| Replies: 1 Views: 8,201 I was able to resolve this. It seems to have been an error with the url. I still don't remember modifying anything on that page though.
Thanks,
Nick |
Forum: HTML and CSS Apr 11th, 2007 |
| Replies: 1 Views: 8,201 Hello,
I built a simple contact form on my web site that simply sends the contents from a form to a php script via a xmlhttprequest. When I originally built this about a month ago, it worked fine.... |
Forum: HTML and CSS Apr 11th, 2007 |
| Replies: 2 Views: 2,326 #navlist
{
margin-left: 0;
padding-left: 0;
padding-top:100px;
list-style: none;
}
#navlist li
{ |