Forum: HTML and CSS Jan 21st, 2009 |
| Replies: 7 Views: 627 easiest way to do this is with javascript and all your content in page.
Example:
with a simple HTML layout like below with your seperate "pages" content in each 'div'.
<div id="content01"... |
Forum: HTML and CSS Dec 13th, 2008 |
| Replies: 4 Views: 584 css works by nesting. so...
"li" is found below "ul"
"li" is found below "li"
Example
<div> |
Forum: HTML and CSS Sep 18th, 2008 |
| Replies: 7 Views: 1,450 Theres two ways to fix this. The following adds a div to push the outer box down below the floated element.
<div class="row" id="rowTxt">
<div class="left"><label for="enq">Enquiry <br /><span... |
Forum: HTML and CSS Sep 18th, 2008 |
| Replies: 7 Views: 1,450 it would be something like the line-height property of the left hand labels adding a sort of padding to your element. So the actual height of this element is larger than your inputs but not the... |
Forum: HTML and CSS Sep 17th, 2008 |
| Replies: 7 Views: 1,450 First of all to stop your input/textareas from bouncing everytime you focus them do this.
input,textarea {
height: 1.5em;
width: 15em;
padding: 0;
margin: 1px 1px 1px 1px;
... |
Forum: HTML and CSS May 23rd, 2008 |
| Replies: 6 Views: 3,023 <center> element is depreciated in html and not supported in xhtml but it would not cause IE to not render an image.
try changing your image names to a.jpg and b.jpg to see if it can find them... |
Forum: HTML and CSS May 6th, 2008 |
| Replies: 7 Views: 1,074 well i am almost certain you cant use relative positioning with the technique you are using but i have frequently used the opening div as a placeholder for inner relative elements.
E.g if you move... |
Forum: HTML and CSS May 6th, 2008 |
| Replies: 7 Views: 1,074 are you displaying tabular information ?
it very much looks like it.
one thing is tables are NOT bad. But are simply bad when using them for entirely different purposes than they were created... |
Forum: HTML and CSS Jan 9th, 2008 |
| Replies: 3 Views: 1,104 no problem at all you can mark the post as solved if you like :D |
Forum: HTML and CSS Jan 9th, 2008 |
| Replies: 3 Views: 1,104 its is because the bar is positioned absolutely.
and when you set a width of 100% it is 100% of the viewable area so when your content is larger than your browser it exceeds 100%.
dont... |
Forum: HTML and CSS Jun 20th, 2007 |
| Replies: 5 Views: 2,118 two ways.
1) USE TABLES
2) add a margin to your content i.e. <div style="margin-left:200px;">CONTENT HERE, CONTENT HERE</div>
hope that helps |
Forum: HTML and CSS Jun 15th, 2007 |
| Replies: 10 Views: 3,063 majority of people use I.E. wouldnt it make sense to get it to work in that first ? although theres no reason why you cant get something working across all browsers. it just takes TIME and EFFORT |
Forum: HTML and CSS Jun 13th, 2007 |
| Replies: 10 Views: 3,063 i see no red on the page ? i see a small green box in the upper left corner. and btw i dont think min-height works in IE or it could be that it works just in IE |
Forum: HTML and CSS Jun 7th, 2007 |
| Replies: 10 Views: 3,063 i dont understand which id and class refer to which item, perhaps a link to your page would help ? |
Forum: HTML and CSS Jun 7th, 2007 |
| Replies: 2 Views: 2,459 <HEAD>
<STYLE type="text/css">
background-image: url('imageurl.jpg');
background-repeat: no-repeat;
background-position: 30% 20%;
</STYLE>
</HEAD>
you can change the... |
Forum: HTML and CSS May 4th, 2007 |
| Replies: 2 Views: 1,059 there are a couple of ways of achieving this but what are you expecting to use javascript or PHP would be most suitable.
If your unsure, for PHP you will require a server with PHP installed on it... |