schedal
-
[Solved] IE7 not making a DIV be auto / 100% width?
ok finally found the solution!! Have to add: overflow:auto; width:100% to the holding DIV and the DIV with the title and BINGO it works in IE7! yaay!
-
[Solved] IE7 not making a DIV be auto / 100% width?
Thanks, I think I kept adding things when I was trying to get it to work, and the left margin issue is something i just haven't fixed yet for the right-column... if there are two declarations, I'm prety sure IE just uses the most recent on…
-
relative jquery selector?
and Hi Joel!! This solution btw was provided by Ryan.
-
relative jquery selector?
thanks, eq(1) works if the order of the divs is always going to be the same, but this is not a very good idea when thinking about scalability of a website and the potential for new properties/fields to be added to a site. Instead, I found out I cou…
-
Float left combined with bullets: problematic
YAAY! finally, the solution was to add ul { overflow:hidden; } to the actual UL tag, phew!!!
-
Float left combined with bullets: problematic
also just tried, overflow:hidden on the parent element, which makes the entire right side look perfect, but it doesn't wrap around the image anymore when I do this... still struggling... :( sniffsniff
-
Float left combined with bullets: problematic
pfff, no wrapping it in a div didnt help either... I can get it all to wrap "left" but then the bullet pictures get stuck behind (!?!)* the image and the bullet text properly snugs to the side of the image... :( Am I just doing something …
-
Float left combined with bullets: problematic
Thank you both for your replies, unfortunetly, neither of these solutions will work programmatically in all cases, because the bullets are sometimes beneath the image, sometimes to the right of it [depending on how much text comes before it] and the…
-
Help making width of page really be 100%...
Thank you for your various recommendations, I will try for a combination of min-width and java script disabling of the right-column; plus the reduction of the width of some of the elements to something close to indeed 960 pixels. Yes: horizontal sc…
-
Help making width of page really be 100%...
yes, I am aware of the width concern overall, this will still be corrected. The right column may even become conditional based on screen size [since this is never an absolute necessity to be seen, as it is just a filter] -- in fact, if javascript is…
-
How to make a floating module, like apple/store/cart
Excellent! thanks!!
-
Getting a 100% height to actually be 100%
yaay!! ok, "I solved it" however I am not sure if it is considered 'cheating'. I used jquery to grab the height of the left column, and to then write this height to the right column dynamically on page load. as i couldn't se…
-
Getting a 100% height to actually be 100%
Ok I am now VERY close, I used the technique listed here: http://www.cssstickyfooter.com/ Which was very effective! However, I have now the issue that the right column's peach color will not extend all the way down to the footer [even though…
-
How to make a floating module, like apple/store/cart
sorry there blue, but I dont see any links in your post... thanks! ;)
-
Getting a 100% height to actually be 100%
Oh and I need the footer to not go over the text, but to "lock" at the bottom of the .main when the window is re-sized to be very narrow, so this is another reason why I dont think position:fixed or absolute will work for me.
-
Getting a 100% height to actually be 100%
Hello dcp, thanks for your reply. I tried adding some absolute, fixed and relative positions, but I get the same issue... If you load up the page, and you go to the CSS tag: .main and turn off [with firebug] the height:100% attribute, then the BG go…
-
how do i dynamically set the height of a div to another div?
still eager to hear if anyone has a solution for this... how can I set the bottom align of one div to the bottom align of another? i am open to using javascript, if need be, or tables [cough] if this is the only solution...? but currenrtly i am sti…
-
how do i dynamically set the height of a div to another div?
Hello "theDoc" thanks for your reply. I have tried "position: absolute; bottom:opx;" but this simply places the page at the bottom of the current browser screen's height, and not at the bottom of the entire page [scroll bar…
-
problem centering CSS menu
Chris you're an Angel!! Thanks, you've really made me a happy camper. :D THANKS!!! [thanks for the tip with block and float; I was thinking it was possible to massage them to do whatever I would like, but you have proven me wrong, back to…