Forum: HTML and CSS Sep 7th, 2008 |
| Replies: 5 Views: 820 As others have said, External style sheets are your best method for designing a website.
1) You don't have to edit multiple places to change styles.
2) It allows you to have pages appear... |
Forum: HTML and CSS Aug 5th, 2008 |
| Replies: 8 Views: 2,852 Well spotted Midi.
One thing that should also be pointed out is that Javascript should not be used for site functionality. If someone doesn't have JS enabled (a number of companies have it... |
Forum: HTML and CSS Aug 5th, 2008 |
| Replies: 6 Views: 2,424 You can style your form elements in CSS. Perhaps your browser has different default settings than others, or perhaps you have a larger default text size.
The only semi-guaranteed way to ensure... |
Forum: HTML and CSS Aug 5th, 2008 |
| Replies: 6 Views: 1,438 I am glad that you found the help you needed. :) If you require some explanations to them, don't be afraid to Google a keyword that has been mentioned on this thread such as "CSS Box Model" or... |
Forum: HTML and CSS Aug 5th, 2008 |
| Replies: 2 Views: 1,301 Here is a website for what you are after. It is made purely with CSS and works with most browsers. http://www.tjkdesign.com/articles/keyboard_friendly_dropdown_menu/default.asp
I assume that when... |
Forum: HTML and CSS Aug 5th, 2008 |
| Replies: 6 Views: 570 With a static site, it would involve some sort of tie with your browser's search feature. Real searches are tied to a database, and since you don't have a tie there it would need to access a search... |
Forum: HTML and CSS Jul 30th, 2008 |
| Replies: 9 Views: 1,203 Dreamweaver is not a bad program. However, it is not the best program to learn on. It has many "good" coding techniques, but only if you know what to look for. It makes very jumbled up code if you... |
Forum: HTML and CSS Jul 25th, 2008 |
| Replies: 13 Views: 4,325 You can also help speed up the process by saving the file with "quotes" around the name. This forces Windows to accept the file type.
Example:
SAVE AS: _________________
SAVE AS:... |
Forum: HTML and CSS Jul 25th, 2008 |
| Replies: 6 Views: 2,189 There are some great tutorials on the Internet about how to use Dreamweaver. The thing you should remember is that Dreamweaver is only an application for building web pages. It is not a language in... |
Forum: HTML and CSS Jul 25th, 2008 |
| Replies: 15 Views: 24,203 The simplest way to center a page horizontally is to make a wrapper div and give it a margin: auto;. That works on all browsers that are used by the majority today. |
Forum: HTML and CSS Jul 20th, 2008 |
| Replies: 5 Views: 886 PHP can't do it alone. You will need to be sending data to it from somewhere for it to calculate and run on the server prior to the page loading.
CSS would be used to format the data as the page... |
Forum: HTML and CSS Jul 20th, 2008 |
| Replies: 6 Views: 1,438 What you are going to need to do is put that in your CSS. you are not trying to float the DIV containing the images, just the images. So, you want to target the images inside the DIV.
Here is a... |
Forum: HTML and CSS Jul 20th, 2008 |
| Replies: 6 Views: 1,438 IE has an issue with doing an accurate box model. It also likes to double the margins on floated elements, and collapse margins. These are all triggered from hasLayout.
If you want to target IE... |
Forum: HTML and CSS Jul 20th, 2008 |
| Replies: 3 Views: 2,604 What you are doing is floating the div, not the images inside the div. You should target the images.
.float img {float: left; margin: 0 10px;}
<div class="float">img img img img</div>
That... |
Forum: HTML and CSS Jul 17th, 2008 |
| Replies: 3 Views: 825 I am not aware of any hacks for FF2 like there are with older versions of IE. Firefox follows W3C standards for the most part, unlike IE - so hacks are very hard to come by to target it.
With that... |
Forum: HTML and CSS Jul 17th, 2008 |
| Replies: 6 Views: 3,690 Another option for using the a scrollable area is CSS' overflow property. It would allow you to also get a number of cross-browser compatibility too.
<style type="text/css">
<!--
div.scroll {... |
Forum: HTML and CSS Jun 19th, 2008 |
| Replies: 2 Views: 3,469 Hi Sreekanth. The Javascript file was attatched before I posted this thread and shows on line 15-16 of the code in my first post.
I have done some editing to my code and got the movie to position... |
Forum: HTML and CSS Jun 18th, 2008 |
| Replies: 9 Views: 8,342 You can run into some issues with IE7 making a break in your page if you are not turning off the overflow. This is a common method to clear floated elements.
.clearfix:after {
content:".";... |
Forum: HTML and CSS Jun 18th, 2008 |
| Replies: 2 Views: 3,469 Hello, while I am not new to web design, I am new to developing an XHTML 1.0 Strict site using divs and not tables. I am trying to revamp my website to use this, and it is proving a challenge making... |