i was able to copy over the three widget areas from power blog into my own,
http://ocixx.com/joseph/
i have the three leader asides widget areas below the nav menu and i cant figure how to give them their general style aka alignment.
i was able to copy over the three widget areas from power blog into my own,
http://ocixx.com/joseph/
i have the three leader asides widget areas below the nav menu and i cant figure how to give them their general style aka alignment.
In your standard files, you have the #subsidiary div which is exactly the same style you want, just reference its styles and do the same with your new code.
Original
#subsidiary { width:960px; margin:0 auto; overflow:hidden; }
#subsidiary .aside { width:300px; float:left; margin:0 10px 0 10px; }
#subsidiary #third { margin:0 0 0 10px; }
Modified - added your additions in the same format as original
#subsidiary, #leader-container { width:960px; margin:0 auto; overflow:hidden; }
#subsidiary .aside, #leader-container .aside { width:300px; float:left; margin:0 10px 0 10px; }
#subsidiary #third, #leader-container #third-leader { margin:0 0 0 10px; }thats Scott!, that did the trick, but now theres a little issue it seems, using google chrome to inspect element it seems #leader-container is pushed to the far right, being completely out of line with everything.. margin 0 auto is set right so i dont even know what to look at for that
#leader { clear: both }psssh LOL you wouldnt nelieve how often clear:both is the answer to my questions.. lol
Thank you Scott!
This topic has been closed to new replies.