daGUY
-
[Solved] Need help with disabling select box options
Fantastic! Can I buy you a beer? :-) I was trying to think of ways I could "track" which options had to be reenabled, but that whole line of thinking was too complex and I couldn't get it to work. Your method is brilliant - just rese…
-
[Solved] Need help with disabling select box options
Will have to test this some more, but so far, it looks like...IT WORKS! Dude, you are a lifesaver! Seriously, thank you so much! Could you explain a little more about how this works? Just for my own reference...
-
CSS dropdown menu not working in IE6/IE7
I figured it out...I had the text of the root menu item just as plain text with the for the submenu next to it. Regular text is an inline element by default, so the submenu was appearing to the side of it rather than underneath. So I wrapped the ro…
-
Any quick feedback on this developing site?
Looking good so far. A few suggestions: - The banner image at the top is way too big. At 1024 x 768, the image alone takes up the entire top half of the page - I have to scroll just to see the bottom of the About Us / Contact Us sections. I think y…
-
jQuery horizontal accordion?
Thanks for the example. I ended up not using it, but that might come in handy in the future :-) Anyway, I did end up getting this to work - it was a pain, but I did it :lol: Basically, rather than having one accordion with four sections, I created …
-
Getting a scrollbar to display only when necessary
Wow...shows you what happens when I haven't had my morning coffee :D That's like the most obvious thing ever. Sorry I even made a post about this :lol:
-
Refreshed portfolio site
Sorry to drag up an old thread, but I finally got around to implementing some of your suggestions...namely, adding a sidebar to the front page with featured work and my latest articles. It kills two birds with one stone - it keeps the line length sh…
-
Change the color of a list bullet without images?
"chriscoyier" said:I think the span technique is generally the go-to method for this: http://css-tricks.com/examples/ColoredListBullets/ Yeah, seems like it. I went ahead and changed it on my site and it looks nice. Just kind of a pain b…
-
Sizing something to tenths of a pixel?
There is no such thing as a fraction of a pixel. Even if the browser recognises it, it isn't possible to render 0.6 of a pixel on your monitor. I think FF is rounding up and down. Right? That's what I thought. But 195.6px works in Firefox…
-
Sizing something to tenths of a pixel?
No can do. It's reused on hundreds of other pages, and making any alteration in the width will break a lot of the layout, which is designed to fit that exact size. I might just have to deal with the gap being there :lol:
-
Sizing something to tenths of a pixel?
"TheDoc" said:The only way that I'm aware of, and what I would've done first, is to change the size of the images. How would I do that? I can't make an image that's 195.6 pixels wide. That's why instead, I made th…
-
Suggestion for a good CSS Book for beginners.
Check out "Cascading Style Sheets - The Definitive Guide" by Eric Meyer. Fantastic resource to have at your disposal.
-
Change the color of a list bullet without images?
"apostrophe" said:Yeah, this was also about the best solution I could come up with recently when I had to do the same thing with an ordered list. Even if there was an "official" CSS method, do you honestly think that IE would su…
-
No padding on a table in IE
The wrapper div works, but not in my particular case. It's too complicated to explain without being able to post a live link, but it involves Spry effects and other trickery. Basically, I'll have to find a way to make it work with the padd…
-
No padding on a table in IE
Yeah, it's a class called "table" that's applied to the table :lol: That's not the problem because the padding takes effect in Firefox, Safari, Chrome, etc...just doesn't work in IE6 and IE7. Again, the padding on the …
-
Help with Spry Effects
Yeah, it looks like a jQuery accordion view will do the trick. I'm gonna try that out. Thanks for the tip!
-
Espresso and Coda ( similarities & differences )
Yep, I'm waiting for it to get unlocked in the MacHeist bundle. The whole bundle is $25 less than Espresso alone at the regular price! And you get a full version that can be upgraded and everything.
-
IE7 creating unnecessary extra white space
"chriscoyier" said:Doesn't necessarily mean there has to be an element out there to cause the space. Could be margins, or some kind of funky positioning. If you can copy and paste some code and throw it on a test page, that'd be …
-
IE7 creating unnecessary extra white space
Can't, it's an internal site. That's why I asked if anyone had encountered the same problem before.
-
IE is not my friend :( Adding extra margins to DIVs
There's a bug in IE6 that causes it to double the margins on floated elements. So if you have this: div { float: left; margin-left: 20px; } IE will actually assign "margin-left: 40px" to the div. Unbelievable, right? The fix is equ…
-
Docked footer IE6-problem
I actually wrote up an article describing how to do exactly this...check it out and let me know if it helps :-) http://home.comcast.net/~daguy/article_ ... ooter.html
-
font smooth in CSS
Font smoothing settings are set on the user's computer. You can't control it through CSS. Assuming you're on XP, go to Control Panel > Display > Appearance > Effects and enable ClearType.
-
Fixed Positioning in IE
You can also use IE7.js to add support for fixed positioning. Google it!
-
Espresso and Coda ( similarities & differences )
I’m trying out the Espresso demo - it's really good, with lots of nice little touches. The tag auto-complete is exceptionally well done. Examples: 1. Typing "
-
Very weird IE6 bug - background image won't show
"chriscoyier" said:I'm sure it's this: #header.submenu That's a selector that has both an ID and a class on it... I almost never ever do that, and I can't even remember why, but now that you bring this up, I'm su…
-
position: fixed on a table row?
Yeah, that's what I figured. When I set position: fixed it looks like it takes the row out of the normal "flow" of the table, and everything gets screwy (like the background color from the row underneath moves up behind the fixed row …
-
Drop down menu problems in IE
Use conditional comments to set specific CSS for IE that removes the gap. I actually just wrote an article about this recently. (Coincidentally, I wrote another article about making a dropdown menu that works in IE too!) Hope this helps.
-
Site Won't Center in IE
"falkencreative" said:I think it should be as simple as adding "text-align:center" to your body declaration in your CSS, and then "text-align:left" to your #page-wrapper I think that only works for IE6. You can try it …
-
Opening a thickbox via onclick?
That seems to make sense, yet it doesn't want to work. I set the link to block with 100% width and height, and also 100% width and height on the table cell. Even with that, everything looks and works exactly the same, except the active area for…