Forum: HTML and CSS Mar 6th, 2008 |
| Replies: 3 Views: 389 |
Forum: HTML and CSS Mar 6th, 2008 |
| Replies: 5 Views: 537 Re: messed up site 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>
<p>Test</p>
... |
Forum: HTML and CSS Feb 26th, 2008 |
| Replies: 5 Views: 611 Re: CSS alignment 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: 596 Re: Alignment Issue (CSS/HTML) 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 War ::... |
Forum: HTML and CSS Feb 21st, 2008 |
| Replies: 1 Views: 377 Re: Difference beween class and id-selector. 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: 718 |
Forum: HTML and CSS Feb 21st, 2008 |
| Replies: 10 Views: 718 |
Forum: HTML and CSS Feb 21st, 2008 |
| Replies: 10 Views: 718 |
Forum: HTML and CSS Feb 21st, 2008 |
| Replies: 2 Views: 631 |
Forum: HTML and CSS Feb 21st, 2008 |
| Replies: 4 Views: 535 |
Forum: HTML and CSS Feb 21st, 2008 |
| Replies: 10 Views: 718 |
Forum: HTML and CSS Feb 21st, 2008 |
| Replies: 1 Views: 1,015 |
Forum: HTML and CSS Feb 21st, 2008 |
| Replies: 8 Views: 815 |
Forum: HTML and CSS Feb 21st, 2008 |
| Replies: 1 Views: 991 Re: CSS: coloring hr. 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: 536 Re: ways to improve css 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: 342 Re: Arachnophilia!!!! 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: 487 Re: Need help with div 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: 12 Views: 914 Re: switch type menu 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: 435 Re: Word break notation The hyphen is the correct notation when splitting a word...even when the word itself is hyphenated. |
Forum: HTML and CSS Feb 12th, 2008 |
| Replies: 2 Views: 248 Re: Need help 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;">
<p>Text</p>
... |
Forum: HTML and CSS Feb 12th, 2008 |
| Replies: 16 Views: 840 |
Forum: HTML and CSS Feb 12th, 2008 |
| Replies: 16 Views: 840 Re: LogicWeb / CSS Question 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 at... |
Forum: HTML and CSS Feb 12th, 2008 |
| Replies: 16 Views: 840 Re: LogicWeb / CSS Question 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: 632 |
Forum: HTML and CSS Feb 8th, 2008 |
| Replies: 6 Views: 1,204 |
Forum: HTML and CSS Feb 8th, 2008 |
| Replies: 16 Views: 840 |
Forum: HTML and CSS Feb 1st, 2008 |
| Replies: 4 Views: 396 Re: HTML: can anyone see the problem here? 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: 1,284 |
Forum: HTML and CSS Feb 1st, 2008 |
| Replies: 7 Views: 559 Re: Text Editor & Web Design 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: 559 Re: View Port 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: 559 Re: View Port 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: 753 |
Forum: HTML and CSS Jan 25th, 2008 |
| Replies: 5 Views: 663 Re: Problems With Rollover Buttons 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... |
Forum: Site Layout and Usability Jan 23rd, 2008 |
| Replies: 3 Views: 675 Re: Newbie in IE hell I modified your code as follows:
For the css, I changed the main id to:
#main{
margin-top: 15px;
float: left;
} |
Forum: HTML and CSS Jan 23rd, 2008 |
| Replies: 5 Views: 663 Re: Problems With Rollover Buttons In the <head> section, add the following script:
<script type="text/JavaScript">
<!--
function MM_swapImgRestore() { //v3.0
var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++)... |
Forum: Site Layout and Usability Jan 23rd, 2008 |
| Replies: 4 Views: 683 Re: Editing a Nav Bar I use javascript for my navigation and then simply call the script from each page.
That way I only need to update the javascript file. |
Forum: Site Layout and Usability Jan 8th, 2008 |
| Replies: 22 Views: 3,321 Re: web design software I use Dreamweaver simply because I like the auto complete and color coding features of it...but I still do all of my coding line by line. |
Forum: Web Developers' Lounge Jan 7th, 2008 |
| Replies: 7 Views: 578 |
Forum: HTML and CSS Jan 4th, 2008 |
| Replies: 6 Views: 355 Re: Need a lil assistance Try making the middle image on the right a link so we can see what happens to it.
I'd like to see the image disappear to try and determine what actually happens.
Also, have you looked at your site... |
Forum: HTML and CSS Jan 4th, 2008 |
| Replies: 4 Views: 415 |