Register
FAQ
Calendar
Search
Today's Posts
Rules
Guidelines
SMS enable your application
via Clickatell’s fast, simple and reliable API's, built to integrate with any system.
Click here
to learn more.
Flash Website Builder
- Trendy Site Builder is a Flash Site Building tool that helps users build stunning websites.
Check Out Custom
Custom Logo Design
by LogoBee. Website Design and Free Logo Templates available.
CodingForums.com
>
Search Forums
Search Results
User Name
Remember Me?
Password
Before you post, read our:
Rules
&
Posting Guidelines
Page 1 of 4
1
2
3
>
Last
»
Showing results 1 to 25 of 80
Search took
0.36
seconds.
Search:
Posts Made By:
auslin
Forum:
HTML & CSS
12-06-2012, 01:48 AM
Replies:
11
Center Dynamic Content Vertically and Horizontally?
Views:
659
Posted By
auslin
It just needs a few re-adjustments to make the...
It just needs a few re-adjustments to make the 'CSS tables' method work. The example below uses a div wrapper for the links, as that seems to be what you are using, rather than the UL-LI-LINK...
Forum:
HTML & CSS
12-05-2012, 09:39 AM
Replies:
11
Center Dynamic Content Vertically and Horizontally?
Views:
659
Posted By
auslin
Getting link text (1 line only) to be centred...
Getting link text (1 line only) to be centred vertically can be done by setting the link's line-height equal to the link's height. This requires (for a row of links) that the link's display is set to...
Forum:
JavaScript frameworks
08-07-2012, 07:12 AM
Replies:
15
need RANDOM images help
Views:
1,732
Posted By
auslin
The current problem seems to be from mis-matching...
The current problem seems to be from mis-matching quotes. Try replacing
window.document.getElementById("showpics").style.backgroundImage="url('+bkgs[num]+')";
with
...
Forum:
JavaScript frameworks
08-03-2012, 11:43 AM
Replies:
15
need RANDOM images help
Views:
1,732
Posted By
auslin
Just having a look at the very first attempt in...
Just having a look at the very first attempt in post #1....
There is an omission in the original javascriptkit code at http://www.javascriptkit.com/script/cut176.shtml.
The line...
...
Forum:
JavaScript programming
06-23-2012, 11:25 AM
Replies:
4
Fading image question
Views:
374
Posted By
auslin
The method you are using uses just one image tag...
The method you are using uses just one image tag for rendering the image, and fades it out progressively to zero opacity (in terms of what you see, to its parent's background color), then fades in...
Forum:
HTML & CSS
04-17-2012, 02:07 AM
Replies:
5
pure css way of making an element appear precisely in the centre of the screen?
Views:
492
Posted By
auslin
If you did want to 'blindly' center an image of...
If you did want to 'blindly' center an image of unknown dimensions in the middle of the page, in all browser versions (including IE6 & IE7), the method described by Gary Turner does allow that: ...
Forum:
JavaScript programming
04-16-2012, 12:43 AM
Replies:
1
Onclick not working right with nested divs
Views:
1,019
Posted By
auslin
BTW, watch out for the missing angle bracket on...
BTW, watch out for the missing angle bracket on your 'telli' div.
In the normal state, an event will bubble upwards from an element all the way through its ancestor elements to the document or...
Forum:
HTML & CSS
03-09-2012, 04:50 AM
Replies:
5
How to float text right and center vertial of image
Views:
787
Posted By
auslin
One way here is to use display:table-cell....
One way here is to use display:table-cell. There's an image on the left and a caption on the right, and both are to be vertically centered. They can each be put in spans which receive display:...
Forum:
DOM and JSON scripting
03-01-2012, 12:40 PM
Replies:
4
Script not working in IE6+
Views:
708
Posted By
auslin
el1.setAttribute("onKeyup", "sum()"); ...
el1.setAttribute("onKeyup", "sum()");
el1.setAttribute("class", "validate[required]");
IE6 and IE7 will not allow setting of events and classes with setAttribute(). This was mainly fixed in IE8 -...
Forum:
JavaScript frameworks
02-14-2012, 09:45 PM
Replies:
3
Background image opacity doesn't seem to be working
Views:
479
Posted By
auslin
CSS3 opacity values range between 0 and 1. Also,...
CSS3 opacity values range between 0 and 1. Also, that comment says 1 = 100%, so try setting your opacity to 0.9, not 90.
Forum:
HTML & CSS
01-01-2012, 02:43 AM
Replies:
5
Angular menus
Views:
557
Posted By
auslin
You could also include the -ms-transform...
You could also include the -ms-transform declarations in your example, as they are supported by IE9:
.back{
/* Skew */
-webkit-transform: skew(20deg);
-moz-transform:...
Forum:
JavaScript programming
08-24-2011, 04:46 AM
Replies:
5
Javascript problem
Views:
541
Posted By
auslin
This should be OK: var divArray =...
This should be OK:
var divArray = document.getElementById('tablecontent').offsetHeight;
I always understood the offsetLeft, offsetHeight, offsetWidth and offsetHeight properties to be read-only...
Forum:
JavaScript programming
08-24-2011, 04:28 AM
Replies:
2
Please help - urgent -Fading rotating images
Views:
735
Posted By
auslin
The code as posted does basically work, even...
The code as posted does basically work, even though it is a very old script, with a lot of old or deprecated stuff in it. Nevertheless, the images do swap OK in all browsers. They will cross-fade in...
Forum:
DOM and JSON scripting
04-09-2011, 10:50 AM
Replies:
5
My own SlideShow
Views:
739
Posted By
auslin
If you just want to get that existing code...
If you just want to get that existing code working, you have a few things to consider.
Firstly, fix the syntax errors. There is one missing curved closing bracket (in the setTimeout call in...
Forum:
HTML & CSS
10-31-2010, 12:44 AM
Replies:
2
IE6 dublicating last letter after float
Views:
904
Posted By
auslin
<div class="onethirdscollum rightside"> ...
<div class="onethirdscollum rightside">
<div>
ONETHIRDS COLLUM CANVAS right x
</div>
</div>
<!-- TEST -->
<div>
Ther shud not be an X over this line
</div>...
Forum:
HTML & CSS
10-18-2010, 11:07 AM
Replies:
7
Why won't this work in IE? Help please.
Views:
960
Posted By
auslin
It definitely works in IE8. Perhaps try it again...
It definitely works in IE8. Perhaps try it again after clearing your browser cache.
Forum:
HTML & CSS
10-18-2010, 10:55 AM
Replies:
6
center whole text block and word wrap individual lines
Views:
1,952
Posted By
auslin
Perhaps a simpler approach for the markup of that...
Perhaps a simpler approach for the markup of that verse is needed. We can get rid of all those <br /> tags (which shouldn't be used anyway for xhtml strict) by instead using 1 set of <pre> tags. And...
Forum:
HTML & CSS
09-27-2010, 11:09 AM
Replies:
6
How to make a picture non-transparent in a transparent table
Views:
1,696
Posted By
auslin
Unfortunately, that won't be possible. If a...
Unfortunately, that won't be possible. If a parent element has its opacity set to a certain value, any descendant element will be receiving the opacity of the parent (only in IE can you break this...
Forum:
HTML & CSS
09-15-2010, 02:12 AM
Replies:
13
Resolved
border-radius.htc - I cannot get this to work.
Views:
17,978
Posted By
auslin
It works OK for me in IE7 & IE8, after fixing a...
It works OK for me in IE7 & IE8, after fixing a few typos, --provided-- that the affected element does not have position: relative applied to it. The htc fix is using IE's VML, and applying...
Forum:
HTML & CSS
08-29-2010, 01:26 PM
Replies:
7
Cell Hover in IE
Views:
1,511
Posted By
auslin
You could put an anchor in each of the TDs, like...
You could put an anchor in each of the TDs, like this for the first one as an example:
<td onclick="parent.location='http://www.loquemasimporta.com'">
<a href="#" class="overmenu...
Forum:
HTML & CSS
08-29-2010, 01:19 PM
Replies:
6
Drop-down menu troubles.
Views:
1,050
Posted By
auslin
It looks quite OK visually, in some of the recent...
It looks quite OK visually, in some of the recent browsers (including IE8). But underneath there are CSS errors. For instance, the following are invalid property values: left:none, position:none....
Forum:
HTML & CSS
08-28-2010, 10:54 AM
Replies:
7
Cell Hover in IE
Views:
1,511
Posted By
auslin
All of those td tags have the same id of "cell"....
All of those td tags have the same id of "cell". But each id has to be unique; they can't be shared like that.
Perhaps you mean to have "cell" as a class and apply it, plus the "overmenu" class,...
Forum:
JavaScript programming
08-26-2010, 01:39 AM
Replies:
1
Expand/Collapse
Views:
767
Posted By
auslin
There are deprecated attributes being used with a...
There are deprecated attributes being used with a Strict XHTML doctype. For the moment, you might be better off with a Transitional XHTML doctype, or else convert those attributes over to CSS.
...
Forum:
DOM and JSON scripting
08-11-2010, 01:12 PM
Replies:
9
Dreaded Fadeshow
Views:
2,176
Posted By
auslin
In the code just above (in Post #5), there's an...
In the code just above (in Post #5), there's an error message that 'fadeBlock is not defined', so that reference is not being passed correctly. To remedy that, in your autofade function, either of...
Forum:
HTML & CSS
04-20-2010, 01:01 PM
Replies:
5
Gradiented content boxes
Views:
3,257
Posted By
auslin
CSS3 gradients, without the need for images, are...
CSS3 gradients, without the need for images, are becoming more of a possibility. Check it out:
http://robertnyman.com/2010/02/15/css-gradients-for-all-web-browsers-without-using-images/#more-1670...
Showing results 1 to 25 of 80
Page 1 of 4
1
2
3
>
Last
»
Forum Jump
User Control Panel
Private Messages
Subscriptions
Who's Online
Search Forums
Forums Home
:: Client side development
JavaScript programming
DOM and JSON scripting
Ajax and Design
JavaScript frameworks
Post a JavaScript
HTML & CSS
XML
Flash & ActionScript
Adobe Flex
Graphics and Multimedia discussions
General web building
Site reviews
Building for mobile devices
:: Server side development
Apache configuration
Perl/ CGI
PHP
Post a PHP snippet
MySQL
Other Databases
Ruby & Ruby On Rails
ASP
ASP.NET
Java and JSP
Other server side languages/ issues
ColdFusion
Python
:: Computing & Sciences
Computer Programming
Computer/PC discussions
Geek News and Humour
Web Projects and Services Marketplace
Web Projects
Small projects (quick fixes and changes)
Medium projects (new script, new features, etc)
Large Projects (new web application, complex features etc)
Unknown sized projects (request quote)
Vacant job positions
Looking for work/ for hire
Project collaboration/ partnership
Paid work offers and requests (Now CLOSED)
Career, job, and business ideas or advice
Domains, Sites, and Designs for sale
Domains for sale
Websites for sale
Design templates and graphics for sale
:: Other forums
Forum feedback and announcements
All times are GMT +1. The time now is
04:42 PM
.
Web Hosting UK
|
Dedicated Server Hosting
|
Shareware Junction
|
Software Geek
|
Flash file uploader
|
Cloud Server
|
Web Hosting Australia
Home
-
Contact Us
-
Archives
-
Link to CF
-
Resources
-
Top
Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.