Search Results

Showing results 1 to 40 of 434
Search took 0.03 seconds.
Search: Posts Made By: FC Jamison
Forum: HTML and CSS Mar 25th, 2009
Replies: 10
Views: 1,983
Posted By FC Jamison
I included my dropdown menu with the following javascript:


<div id="menubar">
<div id="menu"><script type="text/javascript" src="resources/javascripts/menu.js"></script></div>
</div>

...
Forum: HTML and CSS Mar 25th, 2009
Replies: 3
Views: 445
Posted By FC Jamison
Here are some sites I found...

http://www.lulu.com/content/617463

http://www.thesitewizard.com/faqs/membership-password-protected-site.shtml
...
Forum: HTML and CSS Mar 25th, 2009
Replies: 3
Views: 879
Posted By FC Jamison
I don't believe that's possible using straight html and css.

I could be wrong, though.

Are you sure you mean when you click on the hyperlink image and not when you roll over the image?
Forum: HTML and CSS Mar 25th, 2009
Replies: 5
Views: 975
Posted By FC Jamison
OK...that worked on my server when I named the original document index.shtml. The shtml extention was required so that I could add the SSI (server side include) directives to the existing page.
Forum: HTML and CSS Mar 25th, 2009
Replies: 5
Views: 975
Posted By FC Jamison
So should the code look something like this?


<html>
<head>
<title>EngineeringNotes.net</title>
<link href="style.css" rel="stylesheet" type="text/css" media="screen" />
</head>
<body>
Forum: HTML and CSS Sep 13th, 2008
Replies: 4
Views: 4,708
Posted By FC Jamison
I found this article on embedding fonts in a web page http://www.sean.co.uk/a/webdesign/embedding_fonts_in_webpages.shtm

It only works in IE though.
Forum: HTML and CSS Sep 13th, 2008
Replies: 3
Views: 623
Posted By FC Jamison
The noframes element displays text for browsers that do not handle frames. The noframes element goes inside the frameset element.

If a browser handles frames, it will not display the text in the...
Forum: HTML and CSS Mar 6th, 2008
Replies: 3
Views: 837
Posted By FC Jamison
I don't believe that is possible.
Forum: HTML and CSS Mar 6th, 2008
Replies: 5
Views: 972
Posted By FC Jamison
If you are simply adding your own content, you could try a scrollable div.


<div style="width:300px; height:100px; overflow:auto">
<p>Test</p>
<p>Test</p>
...
Forum: HTML and CSS Feb 26th, 2008
Replies: 5
Views: 1,029
Posted By FC Jamison
To center an image (or other block object) you would use something like:


.centered {
display: block;
margin-left: auto;
margin-right: auto
}
Forum: HTML and CSS Feb 21st, 2008
Replies: 2
Views: 1,314
Posted By FC Jamison
Try this:


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<HEAD>
<TITLE>| ::Gears Of...
Forum: HTML and CSS Feb 21st, 2008
Replies: 1
Views: 952
Posted By FC Jamison
The difference is that an ID references a unique element on the page...i.e. there is only one element on the whole page with the ID.

A class can be used to name several different elements on the...
Forum: HTML and CSS Feb 21st, 2008
Replies: 10
Views: 1,629
Posted By FC Jamison
Yes, it is possible...but it will take someone with more knowledge than I have to correct this issue in IE 6.

I am sorry I cannot help you here.
Forum: HTML and CSS Feb 21st, 2008
Replies: 10
Views: 1,629
Posted By FC Jamison
After all that, I am unable to duplicate the problem in IE 7. I do not see anything disappearing when I click on a link.
Forum: HTML and CSS Feb 21st, 2008
Replies: 10
Views: 1,629
Posted By FC Jamison
Forum: HTML and CSS Feb 21st, 2008
Replies: 2
Views: 1,219
Posted By FC Jamison
Try

#menu.current_page {
color:#FFFFFF;
}


or just
Forum: HTML and CSS Feb 21st, 2008
Replies: 4
Views: 1,344
Posted By FC Jamison
umm...What does "SEF" stand for?
Forum: HTML and CSS Feb 21st, 2008
Replies: 10
Views: 1,629
Posted By FC Jamison
ugh!

Do you have this uploaded to a site so we can see the css and images as well?

It might even be better it you zipped the files and uploaded them here.
Forum: HTML and CSS Feb 21st, 2008
Replies: 1
Views: 1,600
Posted By FC Jamison
How about a link to the site itself so we can see it in action.
Forum: HTML and CSS Feb 21st, 2008
Replies: 8
Views: 1,385
Posted By FC Jamison
I am not seeing a problem at all in IE7.
Forum: HTML and CSS Feb 21st, 2008
Replies: 1
Views: 3,281
Posted By FC Jamison
Use the background-color property for Firefox.


hr {
background-color:#CC00CC;
color: #CC00CC;
width: 25%;
}
Forum: Site Layout and Usability Feb 15th, 2008
Replies: 2
Views: 994
Posted By FC Jamison
There is actually an entire section (http://www.daniweb.com/forums/forum55.html) of this site dedicated to website reviews.

You will find people there to assist you.
Forum: HTML and CSS Feb 15th, 2008
Replies: 4
Views: 771
Posted By FC Jamison
You're going to have to be a bit more descriptive with your problem.

After opening a text file from where? What does ftp have to do with the text file?

What exactly are you trying to do?
Forum: HTML and CSS Feb 15th, 2008
Replies: 5
Views: 1,257
Posted By FC Jamison
I found this googling around:

max-height

* html div#division {
height: expression( this.scrollHeight > 332 ? "333px" : "auto" ); /* sets max-height for IE */
max-height: 333px; /* sets...
Forum: HTML and CSS Feb 15th, 2008
Replies: 14
Views: 2,393
Posted By FC Jamison
You could try something like this:

CSS

#button1 {
width: 50px;
height : 25px;
overflow : hidden;
background-image: url('/images/image.jpg');
}
Forum: Site Layout and Usability Feb 14th, 2008
Replies: 1
Views: 749
Posted By FC Jamison
The hyphen is the correct notation when splitting a word...even when the word itself is hyphenated.
Forum: HTML and CSS Feb 13th, 2008
Replies: 2
Views: 500
Posted By FC Jamison
Without digging through almost 400 lines of partially unformatted html coding, I would say you should put your data in a scrollable div.


<div style="height:100px;overflow:auto;">
...
Forum: HTML and CSS Feb 12th, 2008
Replies: 16
Views: 1,847
Posted By FC Jamison
The page looks good when I view it in Firefox.
Forum: HTML and CSS Feb 12th, 2008
Replies: 16
Views: 1,847
Posted By FC Jamison
I didn't recreate your site, I was simply advising you on how to preload your menu images.

I would apply the method I described to any image that is called when you hover over a tab.

Glancing...
Forum: HTML and CSS Feb 12th, 2008
Replies: 16
Views: 1,847
Posted By FC Jamison
Web site visitors hate to wait, so many Web designers preload images to speed up page display. Although JavaScript is the most common way to preload images, it isn't your only option. Consider using...
Forum: HTML and CSS Feb 8th, 2008
Replies: 13
Views: 1,398
Posted By FC Jamison
What does "change the interface" mean?
Forum: HTML and CSS Feb 8th, 2008
Replies: 6
Views: 4,032
Posted By FC Jamison
It looks good to me as well.

What browser, resolution, and operating system is your client running?
Forum: HTML and CSS Feb 8th, 2008
Replies: 16
Views: 1,847
Posted By FC Jamison
Your initial problem should be able to be resolved by preloading the rollover images.
Forum: HTML and CSS Feb 1st, 2008
Replies: 4
Views: 776
Posted By FC Jamison
Try this...


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta...
Forum: HTML and CSS Feb 1st, 2008
Replies: 3
Views: 4,819
Posted By FC Jamison
Can you share the solution for other people to see?
Forum: HTML and CSS Feb 1st, 2008
Replies: 7
Views: 1,363
Posted By FC Jamison
I like writing my own code in Dreamweaver and then previewing the pages in the different browsers I have installed.

I rarely, if ever, let Dreamweaver write code for me.
Forum: HTML and CSS Feb 1st, 2008
Replies: 6
Views: 1,744
Posted By FC Jamison
Here is a sample page with the stripped down code for fixed divs.


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html...
Forum: HTML and CSS Feb 1st, 2008
Replies: 6
Views: 1,744
Posted By FC Jamison
That sounds like something that is going to require javascript.

Edit:
I did find something that might help you here (http://www.howtocreate.co.uk/fixedPosition.html).
Forum: HTML and CSS Feb 1st, 2008
Replies: 5
Views: 1,390
Posted By FC Jamison
I was unable to duplicate the error using IE7. Have you experienced this problem yourself?
Forum: HTML and CSS Jan 25th, 2008
Replies: 5
Views: 1,008
Posted By FC Jamison
After looking at your code, it appears you have told the browser to show each image twice.

change this code


<td>
<img src="images/home_original.gif" width="110" height="30" alt=""><a...
Showing results 1 to 40 of 434

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC