1

I have I'm trying to move photos on this page.

To the far right which I used float: right; and that seems okay but if you notice it's pushing the Products Name test field down. I don't know how to make that field come back up as well as have the photo off to the right of the page.

I am using Magento Shopping Cart so I don't know how to post this hoping maybe someone could visit the page and see the CSS and what I am doing to help.

4

2 回答 2

1

Now define your ul float:left as like this

#advanced-search-list {
float: left;
}

Result

enter image description here

于 2013-08-05T05:10:20.777 回答
1

Make your span (which wraps the image) as:

display: inline-block;
float: right;

Make your ul (advanced-search-list) as:

float: left;
于 2013-08-05T05:17:10.993 回答