Forum: HTML and CSS May 13th, 2007 |
| Replies: 5 Views: 2,860 rariti do as smalldogn says ;)
For more info on the problem check out the following link:
http://developer.mozilla.org/en/docs/Incorrect_MIME_Type_for_CSS_Files |
Forum: HTML and CSS Apr 17th, 2007 |
| Replies: 6 Views: 6,575 Give the table cell you want to scroll an id, then give it a fixed height, and set overlfow to scroll. Should look something like this:
td#id {
height: 400px;
overflow: scroll;
}
I would... |
Forum: HTML and CSS Apr 12th, 2007 |
| Replies: 5 Views: 1,547 You don't want to do that. That would be very annoying and people would not stay on your site. |
Forum: HTML and CSS Apr 12th, 2007 |
| Replies: 3 Views: 1,363 Make sure you read the whole thread:
http://www.daniweb.com/techtalkforums/thread73830.html |
Forum: HTML and CSS Apr 9th, 2007 |
| Replies: 1 Views: 1,144 MySQL is the most widely used and supported database. PostgreSQL is popular as well.
Server-side languages to look into for interfacing your site with your database: PHP, Ruby on Rails, Python.
... |
Forum: HTML and CSS Mar 22nd, 2007 |
| Replies: 18 Views: 4,158 You can do this without tables. Ideally tables should be used only for tabular data. The layout of your site is NOT tabular data. You will want to read up on the css property: clear. There is a nice... |
Forum: HTML and CSS Apr 9th, 2006 |
| Replies: 8 Views: 2,318 |
Forum: HTML and CSS Apr 9th, 2006 |
| Replies: 1 Views: 1,100 Check this out:
http://css.maxdesign.com.au/listamatic/horizontal01.htm
You need to use display:inline; to get lists to line up horizontally. Lists rock for menus. :) |
Forum: HTML and CSS Mar 31st, 2006 |
| Replies: 3 Views: 3,313 PHP and ASP are also server-side options. I have heard of people using javascript to load html files as well. |
Forum: HTML and CSS Mar 24th, 2006 |
| Replies: 4 Views: 1,649 Use ASP to calculate the totals. I'm sure someone in the ASP forum will be happy to help:
http://www.daniweb.com/techtalkforums/forum62.html |
Forum: HTML and CSS Mar 24th, 2006 |
| Replies: 4 Views: 1,649 How are you getting the values from the database? What server-side language are you using? |
Forum: HTML and CSS Mar 14th, 2006 |
| Replies: 2 Views: 1,082 That is a PHP error, but you haven't posted any PHP code for us to look at... |
Forum: HTML and CSS Mar 13th, 2006 |
| Replies: 9 Views: 2,662 The warning for Internet Explorer did not display in Internet Explorer. I thought that was your problem?? The warning did not display for me in internet explorer, but when I removed the line... |
Forum: HTML and CSS Mar 13th, 2006 |
| Replies: 5 Views: 1,627 |
Forum: HTML and CSS Mar 11th, 2006 |
| Replies: 9 Views: 2,662 Its something in the javascript file you are linking to: ( i don't know what )
<script type="text/javascript" src="chromejs/chrome.js" />
remove that and it displays in IE... |
Forum: HTML and CSS Apr 23rd, 2005 |
| Replies: 3 Views: 1,758 Your question is very vague. Are you talking about styling or about data retrieval?
If styling then yes. For data retrieval you will need some kind of scripting language involved. |
Forum: HTML and CSS Apr 16th, 2005 |
| Replies: 2 Views: 14,143 Put it in the body tag:
body {
text-align: center;
margin: 0px;
background: transparent url(http://www.thadallender.com/blog/images/bg_slim.gif) repeat-y 100%;
} |
Forum: HTML and CSS Apr 15th, 2005 |
| Replies: 14 Views: 9,866 Thanks Dave. I guess I'll have to deal with it in php then :( |
Forum: HTML and CSS Apr 15th, 2005 |
| Replies: 14 Views: 9,866 Nothing in Firefox. Works ok in IE. Let me post an ex:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<meta... |
Forum: HTML and CSS Apr 15th, 2005 |
| Replies: 14 Views: 9,866 If I have a long string of text in say a table cell, how can I make it break so it doesn't cause horizontal scrolling? Thanks :) |
Forum: HTML and CSS Apr 4th, 2005 |
| Replies: 6 Views: 2,689 Option 1:
Create a page - index.html. Put it in your main webroot ex: www.todaysfishing.com/index.html. In that index.html put this in your header:
<head>
<meta http-equiv="refresh"... |
Forum: HTML and CSS Apr 3rd, 2005 |
| Replies: 3 Views: 3,324 Its kind of hard to tell since there is a scripting language involved, but we definitly should not be able to see the following in your source code:
<% if($mc->hasVirtualTours() &&... |
Forum: HTML and CSS Apr 2nd, 2005 |
| Replies: 17 Views: 4,930 It would be cool if you posted your code. That way noone would have to guess if they didn't understand your description of the problem... |
Forum: HTML and CSS Mar 26th, 2005 |
| Replies: 6 Views: 6,400 We were having fun watching you post to yourself :p |
Forum: HTML and CSS Mar 25th, 2005 |
| Replies: 21 Views: 5,011 I don't know perl, but I bet if you go to google and search for "perl contact form" you will find something to work for you in the first 5 or so results.
Uh oh I think we might get another forum ... |
Forum: HTML and CSS Mar 24th, 2005 |
| Replies: 2 Views: 5,178 Does you page have any output at all? If not then try moving the script from the head to inside of the body tags.
BAH! I just realized the origional post is over a month old :( |
Forum: HTML and CSS Mar 14th, 2005 |
| Replies: 6 Views: 2,953 I looked with xp sp2 ie 6.0. Works fine.... |
Forum: HTML and CSS Mar 12th, 2005 |
| Replies: 4 Views: 6,767 Is there a way to make substitutions? I know nothing of xslt, but you want to substitute a <br /> tag where ever the style sheet encounters the >
If you are generating the xml yourself, you might... |
Forum: HTML and CSS Mar 3rd, 2005 |
| Replies: 13 Views: 32,942 This should work for you:
<?php
// Edit these...
$page_to_cache = "http://www.theirdomain.com/pagetocache.html";
$page_to_write = 'mycachedpage.html';
// Do not edit below...
$cache =... |
Forum: HTML and CSS Mar 2nd, 2005 |
| Replies: 13 Views: 32,942 Not really the solution you are looking for, but you could use a php script to cache the pages locally on your server. What are you trying to do exactly. I would be very careful using content from... |
Forum: HTML and CSS Mar 2nd, 2005 |
| Replies: 7 Views: 3,444 I think you should listen to DaveSW :p Don't get too caught up on an ideal or concept, this has caused me many problems in the past....
My biggest problems with CSS arise when I get caught up in... |