CSS - I've Tried Solving This For Three Hours..
Hey!
I am very exhausted as I have spent a long time trying to solve this seemingly simple issue. I am trying to make a working-centered layout in the following address: http://vivanidesign.com/testing/testz2.html . Everything else is centered (at least on Chrome) besides the four center boxes. How do I get them centered without screwing everything else over? Many times when I've gotten them centered, the footer gets messed up. I don't want to post long lines of untidy code on here, so I hope someone could view the source and tell me how to make the whole layout centered. I would appreciate so so very much! I've tried so many techniques, and none of them seem to be working. But then again, I am an amateur. Thank you so much Similar TutorialsHello! After hours of searching web and with no result I would like to ask for some advice. There is a space between content and footer which I would like to fill with a div that takes up all of that space. I tried adding height:100% and min-height:100%, but with no luck. Parent div's of this div are also set to height:100% Code: <head> <body> <div id="content_wrap"> <table id="pageLayout" class="pageLayout hideBoth"> <div id="books">Test</div> <div class="push"></div> </div> <table id="footer_table"> Code: html { height: 100%; margin: 0; } body { background: url("../images/css_images/bg.jpg") repeat-x scroll 0 0 #E8E8E8; font-family: Trebuchet MS,verdana,geneva,arial,helvetica,sans-serif; font-size: 12px; height: 100%; margin: 0 auto; padding: 0; text-align: left; } #content_wrap { height: auto !important; margin: 0 auto -30px; min-height: 100%; width: 900px; } table.pageLayout { border: 0 none; height: 100%; width: 100%; } #books { background: url("../images/css_images/books.jpg") repeat-y scroll right bottom transparent; height: 100%; margin: 0 auto; width: 500px; } div in question can be seen here, it contains word ""test" - Site I'm also using sticky footer - link Hello DevShed, Thanks for advance for the help! It's been a long night for me. Instead of working on my Wordpress blog which is launching tomorrow, I was simply carried away with trying to solve this problem I ran into. I've been now trying to "fix" this for 5 straight hours. At my website http://insfired.com, I simply want to add borders around images which are found in posts. Now, I have some minor CSS experience, so I'm not a total n00b, but I really hope I'm doing something wrong and you can help me. I'm going to paste what I wrote on Wordpress.org to try and get help there (with no avail so far): "Ok so I purchased this "fancy" theme called "Themeology" on Themeforest. I know I should probably email the developer but he doesn't really reply to support requests. Now, NO matter what I tried, or where I tried to add the img {border: 1px....) property, images just won't get wrapped. Nothing. my site is located he http://insfired.com/ I'm seriously willing to pay upfront for any CSS expert to fix this for me. I'm not entering the css property wrong, this is what I want: Code: img {border: 1px solid #c8c8c8; padding: 2px; margin-bottom: 10px; } Actually, there is an image class that is already bordered but it's also given the float and the margin right property, whenever I edit this one I can see changes to images with this class, but any attempt to apply borders to images (img) or images within posts (.div.entry.single img) were futile. Code: #page ul#entries li img.avatar{ float: left; border: 1px solid #c8c8c8; padding: 2px; margin-right: 15px; margin-bottom: 10px; } The theme has several .css files, and I tried adding the above (1st) code to ALL, not a single thing moved. I tried clearing my cache and the W3 cache. Seriously, if you want money for fixing this for me I'm willing to pay. I'm insfiredmail on gmail. Help?" I am not liking CSS atm. I have spent nearly 3 hours actually on trying to get a rollover to work. I've tried a IRC channel but all the help I've gotten is how to do a image rollover with one image and/or with text. Here is all I want. It's very simple. I want to have a image rollover (the image changes when the mouse moves over it) for several different images. I want to do it in CSS. Code: #seeallseries { background: url('navpictures/seeallseries.gif') no-repeat; width: 171px; height: 55px; display: visible; } #seeallseries:hover { background: url('navpictures/seeallseriesHover.gif') no-repeat; width: 171px; height: 55px; display: visible; } That's my CSS code that I have right now. How do I use that to make a image rollover. I can do Code: <div class="navbar"> <ul id="seeallseriesul"> <a href="http://www.google.com"><li id="seeallseries"></li></a> </ul> </div> Ignore the other CSS code for the moment. Right at that, it works. The image rollover happens. However I need a link which that does not provide. Is what I'm trying to do impossible? Please tell it's not. This should be simple but it's not for me. Thanks for any links or help. |