brianatlarge
-
Recent Posts widget, grabs RSS?
Well, crap. I think I found it: http://feed2js.org/index.php?s=build Nevermind!
-
Valid CSS/Transparent PNG's in IE6
The transparent png hack that i was using required me to put a line of code in my CSS that would keep it from validating. So, in my markup, I had to put this in: Unfortunately, this needs to be on every page that has transparent PNG's. Fort…
-
h1 and h2 tags on same line
The h2 elements get pushed down because h1, h2, etc are block elements instead of inline elements. You may want to put all of your text in the h1 element, and then the part you want to be bigger in a span element. ie: This is biggerthan this text…
-
Rotating images from a list
Sounds like you need some kind of random image php script. I found one here that looks promising. It would only change it after someone refreshes the page though. http://www.totallyphp.co.uk/scripts/random_image.htm If you wanted to make it happen…
-
Webkit messing up my coda slider
Ok, so I've made a little discovery, but I haven't found the solution yet. I think this is related to a problem I was having in another thread where IE was reporting an error related to offsetWidth. Didn't know what that was about. …
-
Valid CSS/Transparent PNG's in IE6
"pab" said:you have to put it in a conditional stylesheet for ie for it to validate Oh..... OH! I'm gonna try this tomorrow. It's so simple! Any ideas on my second problem?
-
Problem with specificity
Ok cool. Now I have a different problem. Is there any way that I can get the side image of the navigation bar to where on the left side, it just shows the rounded part, but then it repeats horizontally to the right but only repeats the right side. H…
-
Background images aren't showing up [SOLVED]
Sweet. Everything looks like it's working. Check it out: http://www.brianfarris.net
-
Background images aren't showing up [SOLVED]
Cool. Now riddle me this. Why is the content.png background not repeating vertically? http://www.brianfarris.net CSS: #wrapper {margin: 0 auto; width:1000px;} #header {background-image:url(/images/header.png); width:1000px; height: 185px; min-he…
-
getting a div on top of a div that has a picture
I think in your css, you can assign an id to that div and just use the background function. #imagediv {background:url(imageurl.jpg)} Then you put the login information in a div nested in that imagediv. I think that is what you're needing.
-
How do you test in both IE6 and IE7?
So if I go ahead and upgrade my windows partition to IE7, I can just download this program, install it, and then have standalone versions of the previous versions of IE?
-
onmouseover for tables in ie?
YES!!! I FIXED IT! OH DUDE!!! So IE only supports rollover stuff in tags, so I just enclosed the table in and it fixed it. Thanks everyone! I think the site is done.
-
list-style-image not working in IE
"chriscoyier" said:I think if I was in the situation though, I would go for using an inline image and absolute positioning. Set the image just where you want it with absolute positioning, then make another DIV with the text, a higher z-ind…
-
Float issue with safari and FF
"adhoc01" said:Regarding the space between the logo and the green, its the .logobox class again - margin-top is on 29 - adjust that to desired value. To be honest your code is just a bit messy. If I were you I would try and recreate your …
-
Float issue with safari and FF
Thanks. That worked. There is still more space between the green bar and the logobox/top adbox in FF than in Safari. I can live with that but that still tells me something is wrong with my code. Thoughts?
-
Float issue with safari and FF
Excellent. Now it looks the same in both browsers. Unfortunately, I can't move the logo box to the right where it needs to be. I've tried messing with margin and padding for both the logobox and the top adbox and I'm not getting any…
-
2 background images at the same time?
Nevermind. I'm an idiot. I guess I didn't play around with it enough. I just put both classes in separate div's and it worked. Dunno what I was doing wrong before. HTML: CSS: body { font-family: Helvetica, Arial, Verdana, sa…
-
My footer is ignoring my flow!
Yep! That was it. Thanks so much!
-
My second column is going down!
Awesome! Thanks, that was it.