i see this?? <?php wp_head(); ?> <style type="text/css" media="screen"> <!-- @import url( <?php bloginfo('stylesheet_url'); ?> ); --> </style> </head>
Well, try this: <?php wp_head(); ?> <style type="text/css" media="screen"> <!-- @import url( <?php bloginfo('stylesheet_url'); ?> ); --> #content { width: 100%; } </style> </head> Code (markup): or this <?php wp_head(); ?> <style type="text/css" media="screen"> <!-- @import url( <?php bloginfo('stylesheet_url'); ?> ); --> </style> <style type="text/css"> #content { width: 100%; } </style> </head> Code (markup):
take a look ...it brings it to right....but not to top right of page......how does this right nav bar get to top right of page??....like it used to be??......next to adsense that is on top of page?
that didnt seem to work....i want the nav bar that is on the bottom not just moved to the right so it still stays at bottom...but to be moved to the right...and back to the top...where it previoulsy was....how do i do this??
Use this, should work: <?php wp_head(); ?> <style type="text/css" media="screen"> <!-- @import url( <?php bloginfo('stylesheet_url'); ?> ); --> #content { width: 550px; } #sidebar { position:absolute; top:170px; left: 640px; } </style> </head> Code (markup):
I say update the front page and allow those posts to scroll off. This is the best way to see if it's a post or comment that's causing the wrap. All it takes is a broken tag to cause this effect.
ajsa.....that seems to have done it...i used 660 instead of 640....however...look at footer...shouldnt that be centered to page?...it is centered to content...how do i fix this?...what a pain!!...lol...
didnt seem to work....look at rigth side bar.....a few items have been cut off at far right....scroll down and notice google adsesne banner....???
i seem to have fixed it....yet...the bottom of technorati top searches doesnt fully fit in sidebar....also...why is footer not at bottom of page??
Try both. For me in FF (800*600), your sidebar floats to the right such that I see only half of it & have to scroll to the right to see it completely. That's why I suggested float:left; Code (markup): As for the footer: Try adding this to your css #clear { display: block; clear: both; width: 100%; height:1px; overflow:hidden; } Code (markup): and use it as below just before your footer. <div id="clear"></div> Code (markup): - Parag
hhhm....i dont think i need that....the homepage on site is fine....the footer is correct...it seems to have fixed itself....however.....click any post and look at footer on this new page.....it is in the body of post....with sidebar crossing thru it......how do i fix this??? thanks tony