Search Results

Showing results 1 to 40 of 109
Search took 0.02 seconds.
Search: Posts Made By: buddylee17 ; Forum: HTML and CSS and child forums
Forum: HTML and CSS May 15th, 2009
Replies: 2
Views: 550
Posted By buddylee17
http://www.search-this.com/2007/03/12/no-margin-for-error/
Forum: HTML and CSS Apr 20th, 2009
Replies: 3
Views: 578
Posted By buddylee17
The table height attribute has been deprecated. It still works fine, but it is not valid in XHTML. Use a CSS style to set the table height:
<table style="height:100%"
The basic idea is for html to...
Forum: HTML and CSS Mar 24th, 2009
Replies: 2
Views: 1,747
Posted By buddylee17
By default, divs are block level elements, and won't allow other elements to lay next to them. You can fix this by setting the inner divs style to either float:left and float:right, or you can use...
Forum: HTML and CSS Mar 21st, 2009
Replies: 6
Views: 546
Posted By buddylee17
Change your css back to what you had before and then add this:

ul ul{
padding-left:20px
}

Adjust the padding to your needs.
Forum: HTML and CSS Mar 21st, 2009
Replies: 6
Views: 546
Posted By buddylee17
Your code is correct. The problem is the * in the css. Particularly the padding. With * {
margin: 0;
padding: 0;
}you've reset the padding of all elements to 0. By default, the browser adds...
Forum: HTML and CSS Mar 21st, 2009
Replies: 4
Views: 492
Posted By buddylee17
Read this:
http://www.search-this.com/2007/03/12/no-margin-for-error/
Forum: HTML and CSS Mar 21st, 2009
Replies: 2
Views: 415
Posted By buddylee17
How much are you willing to spend?
Forum: HTML and CSS Mar 12th, 2009
Replies: 3
Views: 646
Posted By buddylee17
There is no such attribute value as "float:center". Only left and right.
Forum: HTML and CSS Mar 11th, 2009
Replies: 3
Views: 282
Posted By buddylee17
You're on the right track. You'll need to create an anchor for the page to go to.

In the html where you want the page to scroll to, add <a name="bottom"></a> The page should scroll to here after...
Forum: HTML and CSS Mar 1st, 2009
Replies: 3
Views: 616
Posted By buddylee17
Constructive criticism (the page looks good):
Forget about the video. Try to trim some of that bandwidth down.

You guys must have some dedicated fans, to wait on that page to load. More is not...
Forum: HTML and CSS Feb 13th, 2009
Replies: 4
Views: 596
Posted By buddylee17
</br> should be <br> for html and <br /> for xhtml. There is no such thing as </br>.

Also, why are you using vbscript? You do know vbscript only works in Internet Explorer right? Use JavaScript.
Forum: HTML and CSS Jan 21st, 2009
Replies: 7
Solved: Need some help
Views: 617
Posted By buddylee17
So are you wanting the link content to fill the white box?
Forum: HTML and CSS Jan 21st, 2009
Replies: 7
Solved: Need some help
Views: 617
Posted By buddylee17
I would need a link to the page to see exactly what's happening, but yes it can be done with javascript.
Forum: HTML and CSS Jan 16th, 2009
Replies: 4
Views: 1,134
Posted By buddylee17
Your javascript is really overkill. You have 3 functions that could be condensed into one. Also, the 3 divs, Des_pic1-3, could be condensed since only one is displayed at a time. All of these things...
Forum: HTML and CSS Jan 16th, 2009
Replies: 7
Views: 898
Posted By buddylee17
Yes here's (http://www.smashingmagazine.com/2008/03/13/showcase-of-creative-flash-preloaders/)a showcase of preloader examples. Scroll down and click on the images to see what the preloader looks...
Forum: HTML and CSS Jan 15th, 2009
Replies: 7
Views: 898
Posted By buddylee17
If you want to lower the file size, make it web accessible, and add a preloader, convert the ppt to flash. If your not familiar with Flash, just Google powerpoint to flash...
Forum: HTML and CSS Jan 9th, 2009
Replies: 6
Views: 692
Posted By buddylee17
Look into php/mysql basics. That's Facebook's platform. I'd suggest downloading Wamp (http://www.wampserver.com/en/) or XAMPP (http://www.apachefriends.org/en/xampp.html), set up a db with...
Forum: HTML and CSS Jan 9th, 2009
Replies: 6
Views: 692
Posted By buddylee17
Are you asking how to make a social networking site?
Forum: HTML and CSS Jan 5th, 2009
Replies: 5
Views: 1,274
Posted By buddylee17
The border-radius attribute isn't yet supported by many browsers, like IE. I would recommend using FireWorks or Photoshop to make your buttons, since border-radius is only supported by Firefox,...
Forum: HTML and CSS Dec 28th, 2008
Replies: 4
Views: 747
Posted By buddylee17
Please wrap your code in code tags:

Put code here
Forum: HTML and CSS Dec 21st, 2008
Replies: 11
Views: 5,844
Posted By buddylee17
Yes the http.conf shouldn't have to be modified for simple read and write of text files. The http.conf is more used for things like enabling advanced functions like mod_rewrite that aren't normally...
Forum: HTML and CSS Dec 16th, 2008
Replies: 3
Views: 427
Posted By buddylee17
You'll have to post some code or provide a link.
Forum: HTML and CSS Dec 16th, 2008
Replies: 2
Views: 457
Posted By buddylee17
It's the nesting order of the elements. For instance:

p .red { color:red }
would apply a style to elements nested in p tags with the class="red" like below:
<p>The following span is <span...
Forum: HTML and CSS Dec 16th, 2008
Replies: 3
Solved: Publish Website
Views: 551
Posted By buddylee17
You'll need some type of ftp (file transfer protocol) software. This will allow you to move your files from your local machine to the server that the site is hosted on. Most web editors like...
Forum: HTML and CSS Dec 13th, 2008
Replies: 4
Solved: li vs li li
Views: 574
Posted By buddylee17
li-list item; ul- unordered list; They are used to create a list in html.
Read more at http://www.w3schools.com/TAGS/tag_li.asp
Forum: HTML and CSS Dec 9th, 2008
Replies: 5
Views: 1,141
Posted By buddylee17
It's just a bunch of divs nested together with an external CSS file. You should be able to view the source code and see how it is done. You'll also want to look at the css file to see how the...
Forum: HTML and CSS Dec 6th, 2008
Replies: 2
Views: 635
Posted By buddylee17
Yes, it will require some client side JavaScript, but not much:
<input type="button" value="Play" onclick="this.value='Playing...'" />

Is this what you were needing?
Forum: HTML and CSS Nov 29th, 2008
Replies: 4
Views: 550
Posted By buddylee17
You could just reduce width and height like suggested, however the client will still have to download the full sized image into the cache then resize it. Users are impatient and if the images are...
Forum: HTML and CSS Nov 20th, 2008
Replies: 1
Views: 558
Posted By buddylee17
Don't use a submit button. Use input type ="button" and use a javascript onclick event to trigger the script. Also, to run a script on the server, you'll need to look into AJAX.
Forum: HTML and CSS Nov 19th, 2008
Replies: 3
Views: 1,171
Posted By buddylee17
Enter your question in the C++ (http://www.daniweb.com/forums/forum8.html) forum. This forum is for HTML and CSS only.
Forum: HTML and CSS Nov 16th, 2008
Replies: 3
Views: 720
Posted By buddylee17
Validate the page with the W3C (http://validator.w3.org/). You could have an open element or an error causing this to not work.

Just to see what it should do, create a blank html page and put only...
Forum: HTML and CSS Nov 14th, 2008
Replies: 2
Views: 455
Posted By buddylee17
Validate the page with the W3C (http://validator.w3.org/). I'm sure you'll find several errors.
Forum: HTML and CSS Nov 14th, 2008
Replies: 3
Views: 720
Posted By buddylee17
Yes. Use absolute positioning and set bottom attribute to 20px.

position:absolute;
bottom:20px;
Forum: HTML and CSS Nov 4th, 2008
Replies: 4
Views: 1,069
Posted By buddylee17
This may or may not be the problem, but it is not valid:

<img src="images/gdc1.jpg" alt="Garden Design Company" width="300" height="185" float="right" />
should be:
<img src="images/gdc1.jpg"...
Forum: HTML and CSS Nov 2nd, 2008
Replies: 4
Views: 661
Posted By buddylee17
Is the banner an image or Flash?
Forum: HTML and CSS Nov 2nd, 2008
Replies: 6
Views: 3,271
Posted By buddylee17
You have to understand that each browser sets a certain amount of white space between each element. Please read no margin for error (http://www.search-this.com/2007/03/12/no-margin-for-error/)....
Forum: HTML and CSS Oct 31st, 2008
Replies: 5
Views: 1,534
Posted By buddylee17
It sounds like you need a JavaScript onclick event.
Forum: HTML and CSS Oct 25th, 2008
Replies: 2
Views: 988
Posted By buddylee17
Think of a class as a class in school. The class contains many students. Think of id as a unique student in the class.

Use a class when you have many elements that need the same style applied.
...
Forum: HTML and CSS Oct 11th, 2008
Replies: 8
Views: 1,894
Posted By buddylee17
I don't see it either.

What I would do though:
Scale down the header or just get rid of it. It takes up over half the page! Also, maybe a white background.
Just my opinion
Forum: HTML and CSS Oct 10th, 2008
Replies: 1
Solved: download?
Views: 495
Posted By buddylee17
Not a big fan of google (http://www.google.com/search?q=download+microsoft+expression+web+2&btnG=Search) I take it.

Just a wild guess, http://www.microsoft.com/expression/

Also, if you are...
Showing results 1 to 40 of 109

 


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

©2003 - 2009 DaniWeb® LLC