Michael Giesen 0 Report post Posted January 13, 2011 wondering if you could assist me in a wordpress layout 'issue"? this is the page i'm trying to format: http://asp.giesenwebdesign.com/?page_id=1642 as you can see when you go to the page, that all of the videos are in a single row that goes down the entire page...is there a way to position each video so there is two on each row...so for example, the current page looks like this: Example: video video video video video and I'de like it to look like this: Video - Video Video - Video Video Share this post Link to post Share on other sites
bryan-hadaway 3 Report post Posted January 14, 2011 ` .page-id-1642 .entry_content p{ margin-right:25px; float:left} ` Add to Custom Code > Custom CSS. Thanks, Bryan Share this post Link to post Share on other sites
Michael Giesen 0 Report post Posted January 14, 2011 Bryan...I injected the code you gave me, nothing happened, any other suggestions? Share this post Link to post Share on other sites
Andrew 207 Report post Posted January 15, 2011 Hey Michael, I'm going to go more general and "teach you how to fish" rather than catch you one. The videos are all in `p` tags which is what's called 'block' level or on its own line. I'd start by isolating the page id, and p tags: `page-id-1642 .entry_content p {float:left}` but also the links inside them need to be floated: `page-id-1642 .entry_content p a` Please use Firebug and the tutorials here: http://www.pagelines.com/docs/changing-colors-fonts To get you where you want to be Share this post Link to post Share on other sites