TalkPHP
 
 
Account Login
Latest Articles
» The basic usage of PHPTAL, a XML/XHTML template library for PHP
» Vulnerable methods and the areas they are commonly trusted in.
» Simple way to protect a form from bot
» The Basics On: How Session Stealing Works
» How to keep your forms from double posting data
IRC Channel
IRC Speech Bubble Join the friendly bunch on IRC...
(#TalkPHP on Freenode)

...Also available via a web interface.

See this thread for information on the TalkPHP Free Hugs Initiative™. Subject to availability.
Associates
Associates
CSS Tutorials
Showing results 1 to 24 of 24
Search took 0.06 seconds.
Search: Posts Made By: sidisinsane
Forum: Javascript, AJAX, E4X 09-07-2010, 11:41 AM
Replies: 3
Views: 8,152
Posted By sidisinsane
I have a countdown demo at...

I have a countdown demo at http://sidisinsane.com/playground/css-countdown/ that uses only PHP. There's a link at the bottom to view the code.
Forum: XHTML, HTML, CSS 05-09-2009, 04:27 AM
Replies: 5
Views: 1,616
Posted By sidisinsane
Increase the line-height on the a-element instead...

Increase the line-height on the a-element instead of using padding-top. Besides that, there's a mistake in your active-state declaration. Remove the space between the li-element and the class, so...
Forum: XHTML, HTML, CSS 02-23-2009, 01:55 PM
Replies: 15
Views: 987
Posted By sidisinsane
I can't really see what exactly you want to...

I can't really see what exactly you want to achieve, so here are just some very basic tips for creating (tableless) layouts with CSS.

1. Create your (semantic) HTML
2. Plan your layout (on...
Forum: Advanced PHP Programming 12-27-2008, 03:09 AM
Replies: 11
Views: 837
Posted By sidisinsane
Never ran into anything like this myself, but...

Never ran into anything like this myself, but perhaps the article "Fixing Apache Segmentation Faults Caused by PHP (http://www.omh.cc/2008/mar/6/fixing-apache-segmentation-faults-caused-php/)" will...
Forum: Javascript, AJAX, E4X 12-05-2008, 12:12 AM
Replies: 5
Views: 911
Posted By sidisinsane
Thanks a lot, Wildhoney. Your fix solves all my...

Thanks a lot, Wildhoney. Your fix solves all my issues and so simple it was.
Forum: Javascript, AJAX, E4X 12-04-2008, 11:37 PM
Replies: 5
Views: 911
Posted By sidisinsane
Thanks for responding! I modified your...

Thanks for responding!

I modified your sample-file to demonstrate the behaviour I'm getting and what I'm expecting to get. After testing it, the issues should be clearer.
Forum: Javascript, AJAX, E4X 12-04-2008, 08:11 PM
Replies: 5
Views: 911
Posted By sidisinsane
Input-field with captured text falsely empties on click

The script captures body-text to a specified input-field by either left-clicking and dragging the mousepointer over or simply performing a double-click on it.

The problem: When text is entered...
Forum: Absolute Beginners 10-24-2008, 10:18 AM
Replies: 13
Views: 1,665
Posted By sidisinsane
The PHP-function "sleep()" should do it. Here's...

The PHP-function "sleep()" should do it. Here's just a (somewhat nonsensical) sample script that delays a defined action while displaying a countdown, without the use of javascript. You should get...
Forum: XHTML, HTML, CSS 10-21-2008, 09:54 AM
Replies: 11
Views: 2,337
Posted By sidisinsane
Well, it's supposed to fetch the maximum height...

Well, it's supposed to fetch the maximum height of all boxes with the set class and adjust them equally ... Maybe I don't quite understand your problem. How 'bout posting some of your code?
Forum: XHTML, HTML, CSS 10-21-2008, 08:14 AM
Replies: 11
Views: 2,337
Posted By sidisinsane
You could use one of the many CSS "equal heights"...

You could use one of the many CSS "equal heights" methods (some info at positioniseverything.net (http://www.positioniseverything.net/articles/onetruelayout/equalheight)). But if you're not to...
Forum: General 08-26-2008, 02:48 PM
Replies: 0
Views: 1,051
Posted By sidisinsane
Help Cleaning results from dict://dict.org/

I have implemented a dictionary search using the DICT protocol (dict://). The search-results are unformatted and I'm trying to clean them up.

I.e., the results retrieved from...
Forum: XHTML, HTML, CSS 08-16-2008, 08:31 PM
Replies: 5
Views: 888
Posted By sidisinsane
This tag in your code opens and never closes....

This tag in your code

opens and never closes. Close it or remove it and give your ul-tag the id instead. That would be the first step ...
Forum: XHTML, HTML, CSS 08-09-2008, 11:53 AM
Replies: 11
Views: 2,337
Posted By sidisinsane
YouTube uses tables. But why can't you use a...

YouTube uses tables. But why can't you use a tableless layout with float:left and display:inline instead?
Forum: XHTML, HTML, CSS 06-16-2008, 08:18 AM
Replies: 4
Views: 1,068
Posted By sidisinsane
Just a small correction. Of course you meant...

Just a small correction. Of course you meant using <style>@import css</style>

To prevent a "Flash of Unstyled Content" (FOUC) (http://www.bluerobot.com/web/css/fouc.asp/) I usually link to a...
Forum: The Lounge 06-09-2008, 09:21 AM
Replies: 6
Views: 819
Posted By sidisinsane
I'm a bit lazy today. Go check out my delicious...

I'm a bit lazy today. Go check out my delicious bookmarks (http://del.icio.us/sidisinsane). (I know, they need some cleaning up ...)
Forum: Javascript, AJAX, E4X 05-10-2008, 04:51 PM
Replies: 6
Views: 986
Posted By sidisinsane
You might want to look into Comet...

You might want to look into Comet (http://en.wikipedia.org/wiki/Comet_%28programming%29). Here's a pretty good tutorial on How to implement COMET with PHP...
Forum: XHTML, HTML, CSS 04-12-2008, 08:36 AM
Replies: 18
Views: 1,388
Posted By sidisinsane
I'm sure there are several ways of doing this....

I'm sure there are several ways of doing this. One would be to place an index.php in the W3C-WD directory, which is parsed as css by sending a CSS header. Like this:
<?php
// Send CSS...
Forum: Javascript, AJAX, E4X 04-08-2008, 06:39 AM
Replies: 10
Views: 2,482
Posted By sidisinsane
Can you post your modification?

Can you post your modification?
Forum: Javascript, AJAX, E4X 03-23-2008, 01:26 PM
Replies: 10
Views: 2,482
Posted By sidisinsane
Hi Andres, this script I found a while ago should...

Hi Andres,
this script I found a while ago should help. It's not very nice code and it's also not unobtrusive, but it should work with most browsers.

<html>

<head>

<script...
Forum: XHTML, HTML, CSS 03-04-2008, 07:02 AM
Replies: 6
Views: 1,803
Posted By sidisinsane
As Aaron already said, scrollbar colors are only...

As Aaron already said, scrollbar colors are only supported by IE and partially by Opera. Quirksmode (http://www.quirksmode.org/) has a good browser support list...
Forum: XHTML, HTML, CSS 03-03-2008, 06:42 AM
Replies: 6
Views: 1,803
Posted By sidisinsane
Could you provide a link to the tutorial?

Could you provide a link to the tutorial?
Forum: Member Introductions 01-11-2008, 09:29 AM
Replies: 11
Views: 764
Posted By sidisinsane
What a friendly community this is! Thanks, tak,...

What a friendly community this is! Thanks, tak, merci and bedankt to all for your warm welcome. Hopefully I can contribute something constructive every once in a while. Looking forward to...
Forum: Member Introductions 01-10-2008, 05:28 PM
Replies: 11
Views: 764
Posted By sidisinsane
I'm the new one ...

Hi,
my name is Sid, I'm 36 years old and a freelancing Webdesigner/-developer from Marburg (soon Hamburg), Germany (A country in Europe).

My strong skills are POSH...
Forum: XHTML, HTML, CSS 01-10-2008, 05:07 PM
Replies: 7
Views: 983
Posted By sidisinsane
Aptana (http://aptana.com)'s great and I remember...

Aptana (http://aptana.com)'s great and I remember Komodo Edit (http://www.activestate.com/Products/komodo_edit/) to be quiet decent as well. They are both free but not WYSIWYG editors like...
Showing results 1 to 24 of 24

 

All times are GMT. The time now is 12:14 PM.

 
     

Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0
Inactive Reminders By Icora Web Design