Hey, Notice in the sidebar my 125x125 ads are all stacked up. They should be side by side but they're not. I've tested with three different plugins, and I keep getting the same result. See my site here: http://danmassicottespositiveliving.com/ Notice how the ads hang to the left. Any idea where I need to go to change these settings? I'm using Wordpress, and the plugin can be found here: http://www.webmaster-source.com/wp125-ad-plugin-wordpress/
Add these couple of lines to your stylesheet; .wp125ad odd { float:left; clear:left; } .wp125ad even { float:right; clear:right; } Code (markup): You may not need the 'clear' segments but give it a whirlwith and without.
Hey, Thanks for the prompt reply. Unfortunately it isn't working. My Plugin CSS properties has this though: /* Styles for one-column display */ #wp125adwrap_1c { width:100%; } #wp125adwrap_1c .wp125ad { margin-bottom:10px; } /* Styles for two-column display */ #wp125adwrap_2c { width:100%; } #wp125adwrap_2c .wp125ad { width:125px; float:left; padding:10px; } PHP: I tried putting what you gave me in with what is already there, but I'm still not having any luck. Like this: /* Styles for one-column display */ #wp125adwrap_1c { width:100%; } #wp125adwrap_1c .wp125ad { margin-bottom:10px; } /* Styles for two-column display */ #wp125adwrap_2c odd { width:100%;float:left; clear:left; } #wp125adwrap_2c .wp125ad even { width:125px; float:right; padding:10px; clear:right; } PHP: Sidebars don't seem to have style sheets...any other ideas?
Hey, Actually as it turns out it was the cell-padding that needed to be reduced just slightly. It's fine now. Thanks for the help anyway!