To add a carousel widget to a blogger post, make sure your content column is wide enough for the carousel, and paste the code in the Edit HTML tab. My Post Options are set to: Use "<br /> tags" and "Show HTML literally". Note that you cannot change the white background to another color. However, you can choose to hide the widget's black border and enclose it in a div with a border matching your layout, as shown below:
2 comments:
I have this widget in my sidebar. The white background drives me crazy, but since I can't do anything about that, what steps do I need to take to do as you suggest ("enclose it in a div with a border matching your layout")??
When you create or edit the widget, make sure the option to "Show Border" is not checked. When you paste the widget code into your web page, enclose it in a div the same width and height as the carousel. Add a border to the div using a CSS style tag. You can make the border any width and color you like.
For example, the carousel above is 500px by 175px, so the HTML looks like this:
<div style="border: 1px solid #b2b662; width: 500px; height: 175px;"><object code here></object></div>
Post a Comment