[css-d] Position h2 and p in one line

2011-04-10 Thread mherda
Hi there, I'd like to position a short h2 (double the hight of p) in one line with p so that on the right hand side of h2 there are 2 lines of p. Below h2, p should spread on the whole line. I hope it makes sense. Thanks Martin Sent from my BlackBerry® wireless device __

Re: [css-d] Position h2 and p in one line

2011-04-10 Thread Chetan Crasta
Float the h2: h2{float:left;} Regards, Chetan Crasta On Sun, Apr 10, 2011 at 6:21 PM, wrote: > Hi there, > I'd like to position a short h2 (double the hight of p) in one line with p so > that on the right hand side of h2 there are 2 lines of p. Below h2, p should > spread on the whole line. I

Re: [css-d] Stacking divs

2011-04-10 Thread Chetan Crasta
Try #header_topmenu class { position:relative; z-index: 100; } Regards, Chetan Crasta On Sun, Apr 10, 2011 at 10:52 AM, RePost wrote: > I'm attempting to stack two divs in a wrapper at the right side of my > header. > > There's another div to the left, and the header is wrapped in a container >

Re: [css-d] sizing input elements

2011-04-10 Thread Bruno Souza
Or, you could try something like this: input[type=text]{width:100%} Using this rule, you can have other types of input that won't be affected by this rule. This only works for Bruno Souza Front-end engineer www.caju.nu www.brunomacaco.com.br On Fri, Apr 8, 2011 at 16:17, Alan Gresley wrote

Re: [css-d] Position h2 and p in one line

2011-04-10 Thread mherda
Thanks everyone. I floated it left to achieve what I wanted. Regards Martin --Original Message-- From: Chetan Crasta To: mhe...@gmail.com Cc: css-d@lists.css-discuss.org Subject: Re: [css-d] Position h2 and p in one line Sent: 10 Apr 2011 14:34 Float the h2: h2{float:left;} Regards, Cheta

[css-d] Styling forum posts

2011-04-10 Thread Gabriele Romanato
Hi. The solution presented below uses fixed sizes (that's disgusting!). Did you try something similar in a fluid fashion? Please let me know and link your examples, if any: http://onwebdev.blogspot.com/2011/04/css-styling-forum-posts.html I'd like to test something with table cells values,

[css-d] Gradients and CSS validation

2011-04-10 Thread Keith Purtell
Up until I put a final finishing touch on my website revision, I was successful in validating both HTML and CSS. That came to a crashing end when I added a gradient. Is this something I have to live with or can I change the gradient syntax to validate? http://tinyurl.com/44aeabd - Keith Purtell

Re: [css-d] Gradients and CSS validation

2011-04-10 Thread Alan Gresley
On 11/04/2011 6:25 AM, Keith Purtell wrote: Up until I put a final finishing touch on my website revision, I was successful in validating both HTML and CSS. That came to a crashing end when I added a gradient. Is this something I have to live with or can I change the gradient syntax to validate?

[css-d] How to position a footer below other absolute and relative positioned elements

2011-04-10 Thread Ian Piper
Hi all, I've been away from this list for a long time: hope all are thriving. I'd appreciate some advice about positioning. I have a page in which the upper part is defined by elements that have absolute and relative positioning. The rough page breakdown looks like this (I've indicated the posi

Re: [css-d] Gradients and CSS validation

2011-04-10 Thread tedd
At 3:25 PM -0500 4/10/11, Keith Purtell wrote: Up until I put a final finishing touch on my website revision, I was successful in validating both HTML and CSS. That came to a crashing end when I added a gradient. Is this something I have to live with or can I change the gradient syntax to validat

Re: [css-d] How to position a footer below other absolute and relative positioned elements

2011-04-10 Thread Tim Dawson
What happens if you absolutely position the footer from the bottom ? div#footer_holder { position: absolute; bottom: 0; } Tim On 10/04/2011 22:01, Ian Piper wrote: Hi all, I've been away from this list for a long time: hope all are thriving. I'd appreciate some advice about positioni