Hello,
How can I place a picture in my submenu? I want it left from my cart.
thanks!
Hello,
How can I place a picture in my submenu? I want it left from my cart.
thanks!
Hi betuwedeals,
You can replace the cart icon image with one of your own by either adding the following css and modifying the url to your own image url:
.cart_dropdown_first .cart_dropdown_link {
padding: 0 5px 0 25px;
background: transparent url("images/icon-cart.png") 0px 10px no-repeat;
}
Or just replace the icon-cart.png image with one of your own (but keeping the same filename) in the themes images folder.
Place the css in your Quick CSS in the Styling tab of the theme options or in the custom.css file in the css folder of the theme files.
Regards,
Devin
Hi Devin,
Thanks for your reply.
But i don't want to replace the cart image, i want to put a picture next to it on the left side.
So between the cart and the log in shortcut.
How can i do this?
Regards,
Frank
Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:
#top .info_text_header .cart_dropdown {
background-image: url("http://yoursite.com/yourimage.png");
padding-left: 30px;
background-position-y: 8px;
background-position-x: 0px;
background-repeat: no-repeat;
}
Adjust the css as needed for the size of the image. This will not expand the banner to fit the image so if its too big for the area, you'll need to shrink the image.
Regards,
Devin
You must log in to post.