Some codage would be nice, but have your tried to valign=middle, that should put it in the middle of a cell or div on the vertical axis. so is you are going for a layout that looks something like |||||||--, | being your image, and - being your buttons, then valign middle should work for you.
I love how people get an attitude when THEY asked for help.
Some codage would be nice, but have your tried to valign=middle, that should put it in the middle of a cell or div on the vertical axis. so is you are going for a layout that looks something like |||||||--, | being your image, and - being your buttons, then valign middle should work for you.
Some codage would be nice, but have your tried to valign=middle, that should put it in the middle of a cell or div on the vertical axis. so is you are going for a layout that looks something like ,|||||||-- | being your image, and - being your buttons, then valign middle should work for you.
it doesnt work matey valign middle it does this ||||||| _ _ not |||||||--
the code is -
<valign=top><img src="logo.png"</a> <valign=middle><input type="button"........ iam aligning the button away from the border in a table ending it with
i have the table sized 700 inc width of logo + allow space around the buttons
i have the logo up against the top and left border of the table
valign only works in a table cell, but is inconsistent in different browsers.
Try using <p align="center"> (or div or span, but "p" works better for this) to center the logo horizontally, then for the image buttons, try: <img src="...../image.jpg" style="float:right;"> for the image on the left side, and "float:left;" for the image on the right side. If I understand you correctly, that should give you the -[]- that you are looking for. I haven't tried this lately so I can't be sure it works right, but if it doesn't just position the misaligned images relative, like: <img src="..../image.jpg" stye="position:relative;top:-12px;left:0px;"> that moves an image up 12 pixels. It works really well and is very consistent between browsers.
( valign should go inside the img tag - <img src="logo.png" valign="middle"> )
I should pay closer attention. You want the logo on the left and two buttons vertically on the right side, like []= ?
<img src="logo.png"><img src="button_top.gif" style="float:left;"><br><img src="button_bottom.gif" style="float:left;"><br>
Something like that or try float:left on the logo image. I forgot which way works best. You can also add the positioning along with that to get it just right. This should be consistent in all browsers.
Last edited by Williamsun; 07-30-2012 at 01:48 AM.
Bookmarks