Search Results

Showing results 1 to 40 of 101
Search took 0.01 seconds.
Search: Posts Made By: ingeva
Forum: HTML and CSS Sep 23rd, 2009
Replies: 6
Views: 527
Posted By ingeva
I think you should try Norwegian, or worse: Finnish.

Texts translated like this can be read if you're struggling hard to get the meaning, but the language is simply horrible. Too many expressions...
Forum: HTML and CSS Sep 22nd, 2009
Replies: 6
Views: 527
Posted By ingeva
From what I've seen such translations are almost unreadable. Only word for word and taken out of context, no grammar ... you have to guess the meaning for every other sentence.

Sorry folks, we are...
Forum: HTML and CSS Sep 16th, 2009
Replies: 2
Views: 393
Posted By ingeva
I don't know python or perl, but in php including a text file is easy:
include <name of text file>;

In one of my sites I let the script search directories and display the filenames of that...
Forum: HTML and CSS Sep 15th, 2009
Replies: 2
Views: 346
Posted By ingeva
The way I would do it is by using an error 404 error handler, and parse the URL actually used. On one of my hosts (all hosts do not allow this) I also use this method to parse subdomains, so I don't...
Forum: HTML and CSS Sep 14th, 2009
Replies: 5
Views: 936
Posted By ingeva
CGI is a generic term. You can do it in perl, python or php. There's no CGI language (AFAIK).

php does the job quick and easy. The key is in the three lines I gave you. I suggest you learn php...
Forum: HTML and CSS Sep 13th, 2009
Replies: 1
Views: 666
Posted By ingeva
This was rather lengthy, so I haven't studied it very closely.
A link to a web page might have helped.

But as a start, you have placed the images inside a div, which is good.
Then you have...
Forum: HTML and CSS Sep 13th, 2009
Replies: 5
Views: 936
Posted By ingeva
From WIKI:
"A CGI file is a Common Gateway Interface Script file. Learn how to open a CGI file or convert a CGI file to another file format."

So CGI is a general specification for a file that can...
Forum: HTML and CSS Sep 4th, 2009
Replies: 8
Views: 426
Posted By ingeva
I develop my websites using my own computer, so the backup is really the version on the WEB. If it crashes I can just upload again.

The exception here is dynamic data like the database(s). I'm not...
Forum: HTML and CSS Sep 2nd, 2009
Replies: 6
Views: 581
Posted By ingeva
If you say gedit, I'll say geany. That's my preferred php/html/javascript editor.
Forum: HTML and CSS Sep 2nd, 2009
Replies: 3
Views: 397
Posted By ingeva
OK, thanks! I just though that my type specification (text/css) would override this.

The easiest solution in my case will be to include these CSS specification in the source (html) file.
Forum: HTML and CSS Sep 1st, 2009
Replies: 13
Views: 1,126
Posted By ingeva
I thought I had given this recommendation before, but it must have disappeared.

I also use Joomla!. In fact, I have just made my first website with it.
It's a commercial site, so I'm even getting...
Forum: HTML and CSS Aug 31st, 2009
Replies: 6
Views: 417
Posted By ingeva
I would drop the height and width declarations that don't belong in modern HTML:

<img src="Images/Purple eyes.gif" width="345" height="483" />

Instead I would separate HTML and CSS like this:
...
Forum: HTML and CSS Aug 31st, 2009
Replies: 3
Views: 397
Posted By ingeva
Yesterday I discovered that FireFox refused to read CSS files that did not have the CSS extension.

I have a basic CSS that's always read, based on the CSS extension (I have a script that...
Forum: HTML and CSS Aug 29th, 2009
Replies: 13
Views: 1,126
Posted By ingeva
The request was for a free website editor. Dreamweaver is far from free; in fact it has a ridiculously high price ($400). Additionally it had a very serious bug: You need Windows to use it.
Forum: HTML and CSS Aug 28th, 2009
Replies: 9
Views: 620
Posted By ingeva
That's easy. Just don't set another size for the <a> tag, like I have done.
I like to see that small displacement ... :)
Forum: HTML and CSS Aug 27th, 2009
Replies: 9
Views: 620
Posted By ingeva
Is this something like what you're looking for?

http://upandforward.com
Forum: HTML and CSS Aug 25th, 2009
Replies: 6
Views: 581
Posted By ingeva
I've recently started to use Joomla! which is exclusively written in php so it doesn't depend on your OS. Quite flexible and makes sites that are easy to maintain. For the best result, however, you...
Forum: HTML and CSS Aug 22nd, 2009
Replies: 6
Views: 982
Posted By ingeva
The fact that some actually WANT rounded corners really baffles me. I would go to great length to have them removed. They are so UNNATURAL! :)
That may also be the reason why I HATED Windows XP when...
Forum: HTML and CSS Aug 18th, 2009
Replies: 9
Views: 513
Posted By ingeva
Should be very easy. Just move the <p> BEHIND the image specification.
Forum: HTML and CSS Aug 15th, 2009
Replies: 4
Views: 359
Posted By ingeva
To me the two look identical except the menu in the test version is a little narrower. There's no extra white space.

This could be browser dependent. I use FireFox 3.0.
Forum: HTML and CSS Aug 14th, 2009
Replies: 3
Views: 557
Posted By ingeva
Should be done by just omitting the width attribute. AAMOF you could drop the other attributes also, unless they've been set to another default.
Forum: HTML and CSS Aug 13th, 2009
Replies: 2
Views: 312
Posted By ingeva
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: Show Off your Projects Aug 13th, 2009
Replies: 1
Views: 503
Posted By ingeva
Out of 10000 hits to one of my websites, 378 were done with IE6.
I would hardly call that a majority. I admit that people who see my sites may be more than average interested in internet and...
Forum: HTML and CSS Aug 12th, 2009
Replies: 2
Views: 209
Posted By ingeva
I don't know aptana but I use Geany which is a nice editor for html and php, and even for CSS. There are more advanced editors, but Geany is near perfect for me. Gedit is useful too, but simpler.
...
Forum: HTML and CSS Aug 12th, 2009
Replies: 3
Views: 239
Posted By ingeva
In browser: View, Source.
Forum: HTML and CSS Aug 9th, 2009
Replies: 4
Views: 1,770
Posted By ingeva
width=100%; should do the trick, but you may have to experiment with the positioning. I'm not 100% sure about it and don't have the inclination to do all the work for you! :)

You should be able to...
Forum: HTML and CSS Aug 8th, 2009
Replies: 4
Views: 1,770
Posted By ingeva
Define it as a normal image, and set this style:
.background
{ position:absolute;
top:0;
left:0;
width:100%;
z-index:-1;
}

Then use:
Forum: HTML and CSS Aug 8th, 2009
Replies: 1
Views: 256
Posted By ingeva
I wouldn't bother, but your site is too wide anyway. Wouldn't fit in a smaller screen, and I guess IE6 users haven't advanced much past 800x600? :)

It's high time people stopped using...
Forum: HTML and CSS Jul 29th, 2009
Replies: 25
Views: 2,104
Posted By ingeva
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: 25
Views: 2,104
Posted By ingeva
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: 25
Views: 2,104
Posted By ingeva
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: 5
Views: 424
Posted By ingeva
Digression:
The font name is "lucida". I guess you won't ever see it when the name ends with an "e".
Forum: HTML and CSS Jul 15th, 2009
Replies: 25
Views: 2,104
Posted By ingeva
.... 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: 25
Views: 2,104
Posted By ingeva
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: 25
Views: 2,104
Posted By ingeva
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: 10
Views: 970
Posted By ingeva
Well, what did I just do? :)
Forum: HTML and CSS Jul 8th, 2009
Replies: 25
Views: 2,104
Posted By ingeva
Does if work better if you put quotes around "BRH Kannada" ?
Forum: HTML and CSS Jul 5th, 2009
Replies: 25
Views: 2,104
Posted By ingeva
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 4th, 2009
Replies: 2
Views: 363
Posted By ingeva
Display has no "absolute" property.

Position:absolute might do some trick, but in my experience absolute positioning can create more problems than it solves.
Forum: HTML and CSS Jul 3rd, 2009
Replies: 10
Views: 970
Posted By ingeva
Let's hope so!
Maybe someone else can simplify this, even before CSS3! :)
Showing results 1 to 40 of 101

 


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

©2003 - 2009 DaniWeb® LLC