Forum: HTML and CSS Mar 24th, 2009 |
| Replies: 2 Views: 1,747 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 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 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 Jan 21st, 2009 |
| Replies: 7 Views: 617 So are you wanting the link content to fill the white box? |
Forum: HTML and CSS Jan 21st, 2009 |
| Replies: 7 Views: 617 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 Dec 16th, 2008 |
| Replies: 2 Views: 457 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 Views: 551 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 Views: 574 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 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 Oct 10th, 2008 |
| Replies: 1 Views: 495 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... |
Forum: HTML and CSS Sep 24th, 2008 |
| Replies: 9 Views: 1,457 www.w3schools.com will hold your hand through every step. By the time you're done there, you won't need any of the other links mentioned. |
Forum: HTML and CSS Sep 2nd, 2008 |
| Replies: 6 Views: 2,243 Put the background attribute before the background image. This has to do with the order the browser applies the attribute styles in. I would also try to get away from using all caps for the... |
Forum: HTML and CSS Sep 2nd, 2008 |
| Replies: 6 Views: 2,243 In XHTML, the background and bgcolor attributes have been deprecated. This is because they can easily be implemented with css. If you want it to validate, use
<td... |
Forum: HTML and CSS Aug 11th, 2008 |
| Replies: 3 Views: 1,816 Yes, it's done with the css z-index attribute. The highest z-index goes on top. Read more here (http://webdesign.about.com/cs/css/a/aazindex.htm?rd=1). |
Forum: HTML and CSS Jul 24th, 2008 |
| Replies: 13 Views: 4,249 Surround the filename in double quotes:
Click Save As
Filename: "default.css" |
Forum: HTML and CSS Jul 22nd, 2008 |
| Replies: 5 Views: 746 These are inline styles. Dreamweaver will do something similar. It will create a class for the element and embed the styles in the head of the document. This will look like:
<style type="text/css">... |
Forum: HTML and CSS Jul 15th, 2008 |
| Replies: 6 Views: 3,621 What about something like this (http://www.activewidgets.com/examples/2.5/basic.htm)? |
Forum: HTML and CSS Jul 14th, 2008 |
| Replies: 11 Views: 1,920 So you want a 50x50 image to fit inside a 25x25 cell? It sounds like you are trying to fit 48 ounces of water into a 24 ounce bottle. I'm sorry but I'm not understanding what you ask. |
Forum: HTML and CSS Jul 13th, 2008 |
| Replies: 6 Views: 3,621 IE is retarded. Here's (http://www.webfx.nu/dhtml/collist/implementation.html) what I've found regarding the scrollable tbody element. |
Forum: HTML and CSS Jul 11th, 2008 |
| Replies: 2 Views: 1,409 It's called a textarea.
<textarea rows='5' cols='42'>
Put whatever you'd like to be inside the textarea here</textarea>
To make the box wider, increase the cols value. To make it taller,... |
Forum: HTML and CSS Jul 10th, 2008 |
| Replies: 8 Views: 1,205 Use javascript:
<script type="text/javascript">
if (navigator.appName == "Microsoft Internet Explorer")
{
document.write('If you are using an outdated version of internet explorer your browser... |
Forum: HTML and CSS Jun 15th, 2008 |
| Replies: 4 Views: 1,888 The reason is that each browser applies its own default stylesheet to your page. What this means is that each browser adds a certain amount of margin, padding, line height... to each element. The... |
Forum: HTML and CSS Jun 13th, 2008 |
| Replies: 4 Views: 1,621 No, CSS is not hard to learn but, it does take time to master. You'll catch the basic concepts in a day or so but, because you can manipulate the design in so many different ways, it will take a... |
Forum: HTML and CSS Jun 7th, 2008 |
| Replies: 4 Views: 706 You want something like this? This textbox clears when the user clicks it.
<input type="text" onfocus="this.value=''; this.onfocus=null;" name="notes" value="enter ticket number here" /> |
Forum: HTML and CSS Apr 26th, 2008 |
| Replies: 8 Views: 990 I can't stand frames but, the only solution I can think of would be to use them. Otherwise the document content will refresh on each page change. |
Forum: HTML and CSS Apr 13th, 2008 |
| Replies: 17 Views: 3,871 If you have a common style sheet that's used throughout the site, it's not hard to center your pages. Absolute position the body. Add the following attributes to the body:
body{
position:absolute;... |
Forum: HTML and CSS Apr 12th, 2008 |
| Replies: 7 Views: 5,379 It's not pretty nor creative but is Valid XHTML 1.0 Strict:
<ol>
<li style="font-size:24px">
<span style="font-size:12px">This text is 12px. The bullet number is 24px.</span>
</li>
<li>
<span... |
Forum: HTML and CSS Mar 21st, 2008 |
| Replies: 5 Views: 766 You have to upload the images to the server. Notice how Ohio.gif works but the other 2 images dont. Here's the path to Ohio.gif :
http://www.ohiochirorelief.com/ohio.gif
You need to put the 2... |
Forum: HTML and CSS Mar 4th, 2008 |
| Replies: 2 Views: 962 External css should not contain style tags (<style type = "text/css"></style>) at the beginning and end like they do when putting them inline. If the styles aren't showing up, they probably aren't in... |