chili46
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Content vs. Footer alignment (IE8 / FF)Again, thanks to EMG for the suggestions and the time.
In the end, motivatebusiness walked me through proper usage of the css_browser_selector and that did the trick. With the new addition of the .ie (all versions of Internet Explorer) code, it looks like this:
.ende { clear:both; height: 200px; background: #0c1216 url('images/footer2.jpg') no-repeat; background-position: 50% -5px; display: block; padding-left: 0px; margin: 0px; width: 100%; } .ie .ende { clear:both; height: 200px; background: #0c1216 url('images/footer2.jpg') no-repeat; background-position: 50% -5px; display: block; padding-left: 0px; margin-left: -2px; width: 100%; }
This new margin makes for a 2px gap on the right that show the bg.jpg image, but a little imaging took care of that problem. Thanks again to the members here for their help.
Forum: Themes and Templates
In reply to: Content vs. Footer alignment (IE8 / FF)Thanks again for the advice. I’ve tried EMG’s suggestions and variations with the new parameters, but without any success.
motivatebusiness, GTalk invite sent.
Forum: Themes and Templates
In reply to: Content vs. Footer alignment (IE8 / FF)The advice is much appreciated because a browser selector could potentially fix the issue. The problem is that I’m completely inexperienced at implementing my own javascript. I’m afraid that I’ll need a walkthrough on getting the selector to work.
I downloaded the .js file and stored it in the theme’s directory (bluemod). I then added the following to header.php
<script src="<?php bloginfo('bluemod'); ?>/css_browser_selector.js" type="text/javascript"></script>
I also tried a simpler line in the same location:
<script src="css_browser_selector.js" type="text/javascript"></script>
I then attempted variations on the .ende call in stylesheet.css. I thought these attempts were in line with the .ie / .gecko / etc calls listed on the dev site. I was attemping to setup something simple where IE would load a different image for the footer background than what Firefox would.
I haven’t had any success. Hopefully my mistakes are obvious from this summary. Thanks for the help.