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 2
1
2
>
Showing results 1 to 25 of 34
Search took
0.04
seconds.
Search:
Posts Made By:
jonathansampson
Forum:
HTML & CSS
06-28-2012, 06:51 PM
Replies:
4
HELP: CSS for Responsive Navigation Menu
Views:
525
Posted By
jonathansampson
Do you have these styles in a media query, or...
Do you have these styles in a media query, or just floating outside in the global styles?
Forum:
HTML & CSS
06-28-2012, 12:57 AM
Replies:
20
How do I create headings that align side-by-side with CSS?
Views:
1,070
Posted By
jonathansampson
The question is a little confusing, but if you...
The question is a little confusing, but if you want regions that sit side-by-side, you
could use floated elements: http://jsfiddle.net/xZ7GS/
Forum:
HTML & CSS
06-28-2012, 12:42 AM
Replies:
2
Centering My Entire Page (already html designed) -- Very Stuck, Please Help
Views:
190
Posted By
jonathansampson
You have a lot of position:absolute elements,...
You have a lot of position:absolute elements, which are positioned relative to the window itself. This means you cannot center the content for all browsers without making a few more changes.
You...
Forum:
HTML & CSS
06-28-2012, 12:15 AM
Replies:
6
HTML yes/no box
Views:
868
Posted By
jonathansampson
You're looking for confirm...
You're looking for confirm (http://msdn.microsoft.com/en-us/library/ms536376(v=vs.85)), prompt (http://msdn.microsoft.com/en-us/library/ms536673(v=vs.85)), and alert...
Forum:
HTML & CSS
06-28-2012, 12:10 AM
Replies:
22
How do I align this correctly?
Views:
962
Posted By
jonathansampson
Media Queries aren't that difficult to...
Media Queries aren't that difficult to understand. You basically give the browser
a simple, or complex, expression and some logic to enforce when those
expressions evaluate to true.
If we want...
Forum:
HTML & CSS
06-27-2012, 11:57 PM
Replies:
3
Image navigation with rollover dropdown menus
Views:
627
Posted By
jonathansampson
It's impossible to tell what is causing the space...
It's impossible to tell what is causing the space you're referring to. Can you post a
link to the page online, or perhaps setup an example on http://jsfiddle.net?
Forum:
HTML & CSS
06-27-2012, 11:34 PM
Replies:
1
Navigation Bar not working in Chrome
Views:
441
Posted By
jonathansampson
The problem you're describing won't have anything...
The problem you're describing won't have anything to do with the .htaccess file.
If you're seeing the included data for even a second, the .htaccess file worked fine.
What you're describing...
Forum:
HTML & CSS
06-27-2012, 11:11 PM
Replies:
2
Randomizing Style Class Viewer Please Help!
Views:
506
Posted By
jonathansampson
Is there something specific that is not working,...
Is there something specific that is not working, or is the entire thing broken?
You have some pretty big problems with your JavaScript missing certain crucial characters, like the ' at the end of...
Forum:
JavaScript programming
06-27-2012, 07:56 PM
Replies:
4
small problem changing a onclick
Views:
296
Posted By
jonathansampson
There is apparently some confusion here. You are...
There is apparently some confusion here. You are trying to assign variables as click handlers. This is how your code should look:
document.getElementById("myid").onclick = function(){
/* Do...
Forum:
JavaScript programming
06-27-2012, 12:24 AM
Replies:
4
document.height in IE
Views:
5,918
Posted By
jonathansampson
Just stumbled across this old thread. For anybody...
Just stumbled across this old thread. For anybody coming across this today, note that document.height is not a standard property, in fact it's officially "obsolete" according to the Mozilla Developer...
Forum:
HTML & CSS
06-26-2012, 04:24 AM
Replies:
3
Input type file not working on mac
Views:
728
Posted By
jonathansampson
I don't believe there is anyway to browse the...
I don't believe there is anyway to browse the file-system of iOS with Mobile Safari. Apparently other browsers on iOS are able to achieve this (reportedly, I don't know this myself).
I would...
Forum:
HTML & CSS
06-26-2012, 04:17 AM
Replies:
3
Image navigation with rollover dropdown menus
Views:
627
Posted By
jonathansampson
You can examine the structure of their navigation...
You can examine the structure of their navigation by viewing their source.
They have an unordered list consisting of list items that have both an anchor, and a nested list in each.
Here's a...
Forum:
HTML & CSS
06-26-2012, 03:59 AM
Replies:
3
Taking a small section of a website
Views:
348
Posted By
jonathansampson
They provided the JavaScript for logging keypress...
They provided the JavaScript for logging keypress events:
document.getElementById('kinput').onkeydown = khandle
document.getElementById('kinput').onkeyup = khandle...
Forum:
HTML & CSS
06-26-2012, 03:42 AM
Replies:
22
How do I align this correctly?
Views:
962
Posted By
jonathansampson
Well, it's not so much about mobile versions as...
Well, it's not so much about mobile versions as it is about varying screen widths. You can accommodate various widths of browser windows. Your user may be on a smaller monitor, or may have your page...
Forum:
HTML & CSS
06-26-2012, 03:11 AM
Replies:
22
How do I align this correctly?
Views:
962
Posted By
jonathansampson
Media Queries...
Media Queries (http://msdn.microsoft.com/en-us/library/windows/apps/hh453556.aspx) are special instructions that permit you to apply certain CSS rules when certain conditions are met. For instance,...
Forum:
HTML & CSS
06-25-2012, 09:56 PM
Replies:
22
How do I align this correctly?
Views:
962
Posted By
jonathansampson
Well your logo is going to have a specific width,...
Well your logo is going to have a specific width, right? And I'm sure you are going to have a certain number of links - do you know how many, or what they are? There is only a limit amount of space...
Forum:
HTML & CSS
06-25-2012, 09:28 PM
Replies:
2
IE8 Display issue
Views:
783
Posted By
jonathansampson
With regards to the white borders around images,...
With regards to the white borders around images, you need to turn off the borders on those images nested within anchors:
a img { border: 0 }
Your JavaScript error is showing up in more than...
Forum:
HTML & CSS
06-25-2012, 09:14 PM
Replies:
3
Input type file not working on mac
Views:
728
Posted By
jonathansampson
You cannot use file upload elements from Mobile...
You cannot use file upload elements from Mobile Safari. This is a restriction in the browser itself.
Forum:
HTML & CSS
06-25-2012, 09:11 PM
Replies:
1
Quick Margin Question
Views:
210
Posted By
jonathansampson
You are correct: margin: 0 auto; Means...
You are correct:
margin: 0 auto;
Means "apply 0 margin to top and bottom, and automatically determines margins for left and right."
It's the same as:
margin-top: 0;
margin-bottom: 0;
Forum:
HTML & CSS
06-25-2012, 09:06 PM
Replies:
4
Form Help!!
Views:
337
Posted By
jonathansampson
You aren't naming your input elements. Give them...
You aren't naming your input elements. Give them names, and then access them from $_POST on the server-side.
<input type="text" class="input" name="fullname" />
Which could then be accessed...
Forum:
HTML & CSS
06-25-2012, 09:03 PM
Replies:
5
Trying to create 4 boxes in a row
Views:
289
Posted By
jonathansampson
Glad I could help!
Glad I could help!
Forum:
HTML & CSS
06-25-2012, 08:57 PM
Replies:
22
How do I align this correctly?
Views:
962
Posted By
jonathansampson
Do you know how wide the social regions and the...
Do you know how wide the social regions and the logo region ought to be? And should the width of the header/content area change when you resize? If so, how do you want to prevent the user from...
Forum:
HTML & CSS
06-25-2012, 08:45 PM
Replies:
22
How do I align this correctly?
Views:
962
Posted By
jonathansampson
I think I understand now. So you want it to stay...
I think I understand now. So you want it to stay left-aligned with the content below, as well as having the content and the main header content centered in the browser window.
Let me work with...
Forum:
HTML & CSS
06-25-2012, 08:43 PM
Replies:
5
Trying to create 4 boxes in a row
Views:
289
Posted By
jonathansampson
If you're going to be placing clickable elements...
If you're going to be placing clickable elements in the inner-rectangle, you don't want to use :about. It won't give you that much control. Instead, you'll want to actually place another element...
Forum:
HTML & CSS
06-25-2012, 08:26 PM
Replies:
5
Trying to create 4 boxes in a row
Views:
289
Posted By
jonathansampson
There are numerous ways you can accomplish this,...
There are numerous ways you can accomplish this, but not all are equally useful. For instance, what is the desired function of these squares or these rectangles? Should they contain text? Are they...
Showing results 1 to 25 of 34
Page 1 of 2
1
2
>
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
02:58 AM
.
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.