Goeres, Lisa M [BOOK] wrote:
> I am trying to cheat with a feature on our e-commerce site that displays
> featured items. Unfortunately the host has it setup to display these
> items in a table at either the top or bottom of the page in a row and
> have included inline styles on most of the parts. We would like these
> items to be displayed on the right hand side of the page vertically.
>
> In order to get the look we want for the pages we have to include a
> style sheet link when we edit the html content of the page that we keep
> on our local server (www.ubs.iastate.edu/ubs.css). The rest of the page
> is automatically generated. I have the featured items working in Google
> and Firefox on the PC using display:block on the td tag, but it doesn't
> work on IE8, IE7, IE6. It displays properly in Safari, but below the
> rest of the text instead of floating right. I have played around with it
> so much that I have no idea what else to try. Here is the page that I am
> testing on: http://www.isubookstore.com/StoreAbout.aspx. Any help would
> be greatly appreciated by me and most likely a lot of other stores that
> use this e-commerce site.
>
> Thank you!
> Lisa 
>
>   



If, in your style sheet ubs.css, you

.module50 td, .module51 td, .module52 td, .module53 td
{display: table-row; <--------------- :: delete this rule
float:right; <--------------------------- :: and add this rule
text-align: center;
width: 190px;
min-width: 190px;}

does it bring IE/8 on board?

BTW, your markup is html proprietary.






______________________________________________________________________
css-discuss [[email protected]]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to