Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
Views: 289
Posted By jonathansampson
Glad I could help!

Glad I could help!
Forum: HTML & CSS 06-25-2012, 08:57 PM
Replies: 22
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
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
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
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

 
Forum Jump

All times are GMT +1. The time now is 02:58 AM.