Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 500
Search took 1.75 seconds.
Search: Posts Made By: jerry62704
Forum: Flash & ActionScript 05-23-2013, 03:50 PM
Replies: 11
Views: 1,131
Posted By jerry62704
Flash doesn't work in native Apple, but it does...

Flash doesn't work in native Apple, but it does with the other 95% of the world.

An advantage of Flash over javascript is about 5% of the people turn javascript off so it is worthless to them.
...
Forum: General web building 05-23-2013, 03:25 PM
Replies: 13
Views: 1,592
Posted By jerry62704
A good book (anyone remember them?) is "the zen...

A good book (anyone remember them?) is "the zen of css design" by Shea/Holzschlag.
Forum: General web building 05-23-2013, 03:21 PM
Replies: 11
Views: 1,640
Posted By jerry62704
I like "stylin' with css" by Wyke-Smith and use...

I like "stylin' with css" by Wyke-Smith and use it often.

Online I like http://www.codecademy.com/#!/exercises/0, but the HTML class is dated. The CSS is OK. I like their methodology a lot.
...
Forum: HTML & CSS 05-20-2013, 08:11 PM
Replies: 19
Views: 455
Posted By jerry62704
You can read up on "image map" at this place: ...

You can read up on "image map" at this place:
http://www.jimthatcher.com/webcourse5.htm
Forum: HTML & CSS 05-20-2013, 08:09 PM
Replies: 3
Views: 110
Posted By jerry62704
What you are looking for is "image map". It's a...

What you are looking for is "image map". It's a way to capture the event (click) on a map and tailor the results to be based on what part of the image was clicked on.

Here is a web page talking...
Forum: JavaScript frameworks 05-20-2013, 08:02 PM
Replies: 3
Views: 158
Posted By jerry62704
Hi moon. jQuery questions are probably...

Hi moon.

jQuery questions are probably better in the javascript forums. But you might get some comments about the "absolute"s you have. Do you really need them?
Forum: General web building 05-20-2013, 07:19 PM
Replies: 9
Views: 419
Posted By jerry62704
File Zilla is generally regarded as better than...

File Zilla is generally regarded as better than its cousin Godzilla. Much easier user access and less prone to eat you.
Forum: HTML & CSS 05-02-2013, 07:23 PM
Replies: 4
Views: 180
Posted By jerry62704
Steve, you may have a mistake in the css or it...

Steve, you may have a mistake in the css or it could be a typo here.

You have:
font: 100%/1.5 News Cycle;
but it should be:
font: 100%/1.5 'News Cycle';

Assuming it is one font of course.
Forum: HTML & CSS 04-26-2013, 08:57 PM
Replies: 9
Views: 279
Posted By jerry62704
IN the Context of HTML5, every section can have a...

IN the Context of HTML5, every section can have a header and/or footer. By section I mean all of the new div like tags.
Forum: General web building 04-15-2013, 08:58 PM
Replies: 1
Views: 621
Posted By jerry62704
Question SQL question

I have a problem with a query I'm developing. Does anyone know of a forum for that?
Forum: HTML & CSS 04-04-2013, 04:44 PM
Replies: 19
Views: 538
Posted By jerry62704
Do you have a link? Or code you could paste...

Do you have a link? Or code you could paste here?

It is not clear what you want. For example, unless you do something, all containers are below the top of the page.

Yes, you can have...
Forum: HTML & CSS 04-02-2013, 03:36 AM
Replies: 8
Views: 273
Posted By jerry62704
I don't see any sliding in IE9. Where is the...

I don't see any sliding in IE9.

Where is the snow in the pictures? <g>
Forum: Computer Programming 03-29-2013, 03:51 PM
Replies: 7
Views: 1,111
Posted By jerry62704
I like stylin' with css by Wyke-Smith.

I like stylin' with css by Wyke-Smith.
Forum: HTML & CSS 03-28-2013, 08:39 PM
Replies: 2
Views: 156
Posted By jerry62704
Are we talking two issues? A specific sized div...

Are we talking two issues? A specific sized div for one and scroll bars on a div for another?

HTML
<div id="sized">...</div>

CSS
#sized {
width:100px;
height:100px;
}
Forum: HTML & CSS 03-27-2013, 09:00 PM
Replies: 5
Views: 195
Posted By jerry62704
<!DOCTYPE html> <html> <head> <title>Your...

<!DOCTYPE html>
<html>
<head>
<title>Your Title</title>
<link href="dreamcodes/datagrid/css/tsc_datagrid.css" rel="stylesheet"/>

<!-- jQuery Library (skip this step if already called on page )...
Forum: HTML & CSS 03-27-2013, 08:11 PM
Replies: 3
Views: 219
Posted By jerry62704
Post Read a good book lately?

I'm looking for a good book to serve as class material. The subject is HTML5 and CSS3. It must include problems after each chapter.

What one would you suggest?
Forum: HTML & CSS 03-27-2013, 04:15 AM
Replies: 3
Views: 220
Posted By jerry62704
Is that all the code? The reason is if you have...

Is that all the code? The reason is if you have other link stuff, you have to have it in the LVHA (link, visited, hover, active) order. Also, I seem to recall a problem IE had if hover wasn't on an...
Forum: HTML & CSS 03-27-2013, 04:09 AM
Replies: 3
Views: 215
Posted By jerry62704
Are you talking about the background image? If...

Are you talking about the background image? If so then you might add:

background-size:100% 100%;

HTH.
Forum: HTML & CSS 03-27-2013, 04:01 AM
Replies: 11
Views: 405
Posted By jerry62704
Yes, you generally won't want to use a hammer to...

Yes, you generally won't want to use a hammer to paint a picture. The purpose of tables is to have tabular data, not position things.

Check out the last link in Escavator's sig for some details....
Forum: HTML & CSS 03-26-2013, 08:17 PM
Replies: 8
Views: 507
Posted By jerry62704
You got it down to 17 error so there is progress....

You got it down to 17 error so there is progress. The number one thing to do is remove the style at line 444 and put it in the head section if you need it at all.
Forum: HTML & CSS 03-26-2013, 08:08 PM
Replies: 4
Views: 185
Posted By jerry62704
Note that while W3C CSS likes it, there are logic...

Note that while W3C CSS likes it, there are logic errors in your css.

What color background do you want?
Forum: HTML & CSS 03-25-2013, 12:05 AM
Replies: 11
Views: 405
Posted By jerry62704
I"m taking a class now that teaches everything...

I"m taking a class now that teaches everything should be in tables.
Forum: HTML & CSS 03-24-2013, 11:17 PM
Replies: 2
Views: 205
Posted By jerry62704
Look to the bottom of the forums list and you...

Look to the bottom of the forums list and you will see where you can hire someone to work for you.
Forum: HTML & CSS 03-24-2013, 11:16 PM
Replies: 2
Views: 187
Posted By jerry62704
Don't see the problem.

Don't see the problem.
Forum: HTML & CSS 03-21-2013, 03:01 AM
Replies: 3
Views: 243
Posted By jerry62704
Add a "p" element to your style and give it: p...

Add a "p" element to your style and give it:
p {
margin: 0;
border: 1px solid black;
padding: 0;
}

The gap goes away.
Showing results 1 to 25 of 500

 
Forum Jump

All times are GMT +1. The time now is 12:44 PM.