Forum: HTML and CSS Aug 13th, 2009 |
| Replies: 2 Views: 334 I have done this for a long time. Recently I've come up with a more secure solution: I have one index file which is common for all my sites (except those made with Joomla!). Also, this index file... |
Forum: HTML and CSS Jul 29th, 2009 |
| Replies: 26 Views: 2,631 That's what I was talking about.
It is normally no problem to make a filename compatible with web standards (htmlentities), so that it's converted back to the original when it reaches the... |
Forum: HTML and CSS Jul 24th, 2009 |
| Replies: 26 Views: 2,631 Sorry, I fail to see how a filename naming convention has anything to do with routing information.
The contents of a HTML file with links don't matter at all until it ends up on the client's... |
Forum: HTML and CSS Jul 23rd, 2009 |
| Replies: 26 Views: 2,631 My solution works most of the time. I use only UTF-8, locally as well as on the Net. Maybe not perfect but it covers my needs.
Changes will never happen as long as we accept things as they are.
... |
Forum: HTML and CSS Jul 15th, 2009 |
| Replies: 26 Views: 2,631 .... but you still think the system needs no update? :)
I'm sorry. Maybe I am an idiot here, because I don't understand what you mean.
I've been fighting this "system" since we were using punched... |
Forum: HTML and CSS Jul 14th, 2009 |
| Replies: 26 Views: 2,631 We have a word for people with that kind of attitude, but because I am not English I'm afraid I can't translate. And even if I could, I'm too polite! :)
May I remind you that there are far more... |
Forum: HTML and CSS Jul 13th, 2009 |
| Replies: 26 Views: 2,631 There's a world outside of USA. If a system doesn't allow characters outside the limited ASCII set, it's the system that needs to be changed. |
Forum: HTML and CSS Jul 8th, 2009 |
| Replies: 26 Views: 2,631 Does if work better if you put quotes around "BRH Kannada" ? |
Forum: HTML and CSS Jul 5th, 2009 |
| Replies: 26 Views: 2,631 Windows doesn't support UTF-8 encoding very well, but that would be the way to go. I don't know the Kannada font, but like many other MS TrueType fonts it may not be complete.
I always use UTF-8... |
Forum: HTML and CSS Jul 1st, 2009 |
| Replies: 10 Views: 997 I'm sorry I haven't looked at this. It might work.
But I think I wasn't clear enough in my first post.
If I may say so, your stylesheets looked like overkill, but I realize
that you also have... |
Forum: HTML and CSS Jun 29th, 2009 |
| Replies: 10 Views: 997 OK! I'll take that as a tip. Wouldn't have thought it was possible. You learn something every day. |
Forum: HTML and CSS Jun 27th, 2009 |
| Replies: 10 Views: 997 I think I understand what you're trying to do.
You are using a "double" class:
<div class="tripletBox linkBlock">
I don't think you can do that.
I think you should define 3 DIVS, for... |
Forum: HTML and CSS Apr 24th, 2009 |
| Replies: 5 Views: 748 Each user specifies this in the browser. |
Forum: HTML and CSS Feb 7th, 2009 |
| Replies: 10 Views: 1,008 I only use a text editor to produce my sites.
Currently I'm using Geany, which is context-sensitive.
I tried DreamWeaver a long time ago, but it imposed too many limitations. It's probably better... |
Forum: HTML and CSS Jan 23rd, 2009 |
| Replies: 5 Views: 657 [QUOTE=k2k;785552]
a.nav:link {color:#FFFFFF; text-decoration: none; }
a.nav:visited {color:#FFFFFF; text-decoration: none; }
a.nav:hover {color:#FFFFFF; text-decoration:underline }... |
Forum: HTML and CSS Dec 8th, 2008 |
| Replies: 18 Views: 1,741 I have no good name for it. A JavaScript, and particularly AJAX expert might have a very nice solution for you but since you're not that (And I certainly am not!) I think that either you should leave... |
Forum: HTML and CSS Dec 4th, 2008 |
| Replies: 18 Views: 1,741 Hehe, sorry about that. There were more "pages".
I'm not used to this forum. It does things a little differently
from what I'm used to! :) |
Forum: HTML and CSS Dec 4th, 2008 |
| Replies: 18 Views: 1,741 I don't know how you have organized things, but menues can be handled very elegantly with JavaScript and/or CSS. The latter is often preferred so you really have to study what CSS can do. It's... |
Forum: HTML and CSS Dec 3rd, 2008 |
| Replies: 15 Views: 6,625 I just wonder why on earth you can't use padding? |
Forum: HTML and CSS Dec 2nd, 2008 |
| Replies: 18 Views: 1,741 I can imagine one good use of frames, but I'm afraid it would be somewhat dependent on the browser in use. Standard solutions however, should not be.
I understand your request for a solution where... |
Forum: HTML and CSS Dec 1st, 2008 |
| Replies: 18 Views: 1,741 I don't think you can replace frames, but you can change your way of thinking. Frames do have some advantages, but they are responsible for maintaining oldfashioned constructs. As mentioned before, a... |
Forum: HTML and CSS Nov 30th, 2008 |
| Replies: 18 Views: 1,741 I feel that I haven't answered your previous question in full. Most elements can have borders. Define a nice one with shadows like this:
border: .2em outset #00b;
which defines a border, 0.2em... |
Forum: HTML and CSS Nov 30th, 2008 |
| Replies: 18 Views: 1,741 I would define margins:
If I have a "div" that I want to center, I define its margins like this:
margin: 1em auto 2em auto;
This example gives me a space of 1em above, 2em below, and automatic... |
Forum: HTML and CSS Nov 30th, 2008 |
| Replies: 18 Views: 1,741 The concept of frames may disappear from the Web altogether, but it will take several years so using frames will still be a convenient solution for a long time. However, it's by many considered to be... |
Forum: HTML and CSS Nov 29th, 2008 |
| Replies: 18 Views: 1,741 This doesn't look very hard, but I wouldn't use frames if I could avoid it. I would use divs instead.
With frames, define three of them, above each other:
11111
xxxxx
55555
Define the... |
Forum: HTML and CSS Nov 5th, 2008 |
| Replies: 8 Views: 3,192 I've never had this problem. If one div is 5% wide, shouldn't the other just be 95%? No need to calculate!
I do something like this in several of my own sites. I also usually size objects in %... |