Re: [css-d] aligning text with right edge of button on the following line

2013-03-23 Thread Larry Martell
On Sat, Mar 23, 2013 at 1:38 PM, Philip TAYLOR p.tay...@rhul.ac.uk wrote: Based on your code : div style='text-align: right;' Want this right justified above Download button br / input type=submit class=submit name=submit_preview value=Generate/input input type=submit class=submit

Re: [css-d] aligning text with right edge of button on the following line

2013-03-23 Thread Larry Martell
On Sat, Mar 23, 2013 at 2:37 PM, Philip TAYLOR p.tay...@rhul.ac.uk wrote: Larry Martell wrote: Thanks for the reply. This moves everything to the right. I want the buttons left justified, and the text right justified with the second button. Adding 'float: left' got it to do what I want:

Re: [css-d] aligning text to bottom of element

2008-06-02 Thread Gunlaug Sørtun
corey deep wrote: I am required to align text bottom right beside an image the image is of variable width height maximum 130px w or 130px height. the text remains at the same position relative to the image... Sounds like what this turns out as in most browsers...

Re: [css-d] aligning text to bottom of element

2008-06-02 Thread corey deep
thanks so much. I think this should work. On Mon, Jun 2, 2008 at 12:39 PM, Gunlaug Sørtun [EMAIL PROTECTED] wrote: corey deep wrote: I am required to align text bottom right beside an image the image is of variable width height maximum 130px w or 130px height. the text remains at the

Re: [css-d] Aligning text field

2006-10-01 Thread Portman
Why don't you put the text fields in a box and the text in another box and float them next to each other at a certain distance? Riva Mário Gamito wrote: Hi, How can i in this page: http://www.gamito.org/wizard.php left align the text fields (dotted) at left in a certain distance from the

Re: [css-d] Aligning text with a background box

2006-02-17 Thread Els
Ann Adamcik wrote: One more... I have a css button that I would like to have bottom aligned with the text that it sits next to. Currently, the background box sits below the text line and I can't seem to nudge it upwards. Any ideas on lining it up properly? See the 'go' button toward the

Re: [css-d] Aligning text with a background box

2006-02-17 Thread Ann Adamcik
Els wrote: Since you're working with pixels: .go { margin-left: 10px; position:relative; top:-7px; } You may want to reconsider font-sizes in pixels though. It leaves IE5/6 users without options to resize the text in their browsers. Thanks again - you're my hero today! Unfortunately, the

Re: [css-d] Aligning text in same line

2005-11-28 Thread Zoe M. Gillenwater
Lst Recv wrote: Georg sent me this private reply. For the benefit of the list, I asked his permission to repost it to the list. (BEGIN:) Opera _can_ float elements at the same level as non-floating elements - even when a non-floating element comes first in the source-code. Other browsers will

Re: [css-d] Aligning text in same line

2005-11-25 Thread Lst Recv
Georg, Thanks for the tips. I'm more concerned with using this as a learning case then just making this page look right. So, could I ask you to explain what are your tips are doing and why? Also, could anyone explain why some browsers decide to push the logo down a line when I don't float the

Re: [css-d] Aligning text in same line

2005-11-25 Thread Lst Recv
Georg sent me this private reply. For the benefit of the list, I asked his permission to repost it to the list. (BEGIN:) Opera _can_ float elements at the same level as non-floating elements - even when a non-floating element comes first in the source-code. Other browsers will drop the float

Re: [css-d] Aligning text in same line

2005-11-25 Thread Chris Akins
On a completely different topic, but regarding your CSS: Anytime you have 0 as a numerical value in your rules you don't need units of anykind. Only when you have something other than 0 do you need to specify px, em, %, etc. Also, you can use the value stated once when all numbers are equal as

Re: [css-d] Aligning text in same line

2005-11-25 Thread David Dorward
On 25/11/05, Chris Akins [EMAIL PROTECTED] wrote: Overall, just a shorter, more bandwidth-friendly way of writing the code. I know it seems tiny, but in the course of a whole CSS document multiplied by the pages in your site multiplied by the times each page is served up The joy of CSS in an

Re: [css-d] Aligning text in same line

2005-11-24 Thread Lst Recv
Thanks, Holly, fixing the selector solved both bugs! I see what you mean about needing the actual, noncondensed URL. Could you - or anyone - explain, though, why the initial version - which mistakenly put a float:right on the logo image but no float:left on the picture of the man (dude)

Re: [css-d] Aligning text in same line

2005-11-23 Thread Zoe M. Gillenwater
Lst Recv wrote: Is there anyway to have one line of text, with part of it aligned to the containers left and part of it to it's right? Floats don't seem to work here - I don't know widths in advance, and I don't want flow, just justification. You don't need to know widths to use floats.

Re: [css-d] Aligning text in same line

2005-11-23 Thread Michael Hulse
On Nov 23, 2005, at 1:36 PM, Lst Recv wrote: Is there anyway to have one line of text, with part of it aligned to the containers left and part of it to it's right? You might want to take a look at this ALA article (Scroll down to Splitting the Difference):

Re: [css-d] Aligning text in same line

2005-11-23 Thread Larry Israel
Is there anyway to have one line of text, with part of it aligned to the containers left and part of it to it's right? Floats don't seem to work here - I don't know widths in advance, and I don't want flow, just justification. Crude example of what I'd like: The Opera

Re: [css-d] Aligning text in same line

2005-11-23 Thread Lst Recv
Thanks - I went through the article, but can't seem to apply it to my case. I have a div id=banner, with two images. I'd like one to show on the left and one on the right. (The div also has a repeat-x background image). I've tried several permutations - but none get it right. I also tried

Re: [css-d] Aligning text in same line

2005-11-23 Thread ron zisman
a newbie guess: ul li class=catThe Opera/li li class=date(Fri, July13)/li li class=descrip/li /ul .cat {float: left} .date {float:right} .descrip {clear: both} at least conceptually... i think... On Nov 23, 2005, at 4:36 PM, Lst Recv wrote: Is there anyway to have one line of text, with

Re: [css-d] Aligning text in same line

2005-11-23 Thread Lst Recv
Thanks for the links and info. I was sent a private email asking for the page itself. Here it is, condensed - let me know if you need more. I'm STUMPED by two problems: 1) Why is the logo on the right being pushed down to the next line? 2) Why is a thin white line appearing between #top and

Re: [css-d] Aligning text in same line

2005-11-23 Thread Larry Israel
Lst Recv wrote: I have a div id=banner, with two images. I'd like one to show on the left and one on the right. (The div also has a repeat-x background image). I've tried several permutations - but none get it right. I also tried http://css-discuss.incutio.com/?page=AlignLeftAndRight ,

Re: [css-d] Aligning text in same line

2005-11-23 Thread bill
Hi there, How about a link to your page and css?? It would help :-) Thanks, Bill Scheider Thanks - I went through the article, but can't seem to apply it to my case. I have a div id=banner, with two images. I'd like one to show on the left and one on the right. (The div also has a repeat-x

Re: [css-d] Aligning text in same line

2005-11-23 Thread Christian Montoya
#top img.man { display: block; width: 25%; float: left; } #top a.logo { display: block; width: 25%; float: right; } Shouldn't these be display:inline; ? block will never work for your case. If you want two things to stay on the same line, you have to use inline! -- -- Christian Montoya

Re: [css-d] Aligning text in same line

2005-11-23 Thread Lst Recv
On 11/23/05, bill [EMAIL PROTECTED] wrote: Hi there, How about a link to your page and css?? It would help :-) Thanks, Bill Scheider By popular demand, here are the links: http://mortgagephonequotes.com/mortgage.html BUGS On Opera, it displays fine, but: 1) On Firefox and IE, the logo on

Re: [css-d] Aligning text in same line

2005-11-23 Thread Lst Recv
On 11/23/05, Christian Montoya [EMAIL PROTECTED] wrote: #top img.man { display: block; width: 25%; float: left; } #top a.logo { display: block; width: 25%; float: right; } Shouldn't these be display:inline; ? block will never work for your case. If you want two things to stay on the

Re: [css-d] Aligning text in same line

2005-11-23 Thread Holly Bergevin
Sorry, mail program messup on the previous try... --- From: Lst Recv [EMAIL PROTECTED] Thanks - I changed it, but it didn't solve any of the bugs... Let's see. The first bug you might want to deal with is your incorrectly written selector #top img.dude {

Re: [css-d] Aligning text

2005-11-09 Thread Adriano Castro
You have markup like: div id=generalresume_nameAngus D.F. MacKinnon/div p id=generalresume_address23756 110B Avenuebr / But your css is: .generalresume_name { .generalresume_address { Either the css needs to be #generalresume_name { #generalresume_address { Or you need to change

Re: [css-d] Aligning text

2005-11-08 Thread Adie Hart
In your style sheet you have specified 'generalresume_name' and 'generalresume_address' as classes (they have a '.' before the name) and not ID's. Replace the '.' with a '#' and it works. I'd recommend checking your ID's and classes in 'ifsmain.css' with your 'generalresume.php' page.

Re: [css-d] Aligning text

2005-11-08 Thread Peter Williams
From: Angus Can anyone tell me why my name and contact information at the following will not center? HTML: http://infoforce-services.com/personal/generalresume.php CSS: http://infoforce-services.com/css/ifsmain.css Angus, You have markup like: div id=generalresume_nameAngus D.F.