Search results

  1. CaldwellYSR

    How do to create a double border around my Nav Bar.

    border: 2px double /*color*/
  2. CaldwellYSR

    Suggestion

    I'm not sure if this is already done because I'm not a moderator but is there some way we can either allow the moderators to edit other people's posts or let every "suggest" edits to other people's post, similar to how Stack Overflow does it? Mostly for formatting code snippets and things...
  3. CaldwellYSR

    Please Help - CSS Menu & IE

    Ahhh soo long can't read that much code. Wrap your code in the formatting tags for us please. Click 'go advanced' then click the angle brackets you see in the toolbar (angle brackets look like this: <> ) and then paste your code in there.
  4. CaldwellYSR

    Fabric Change Rollovers

    I'd imagine it's done with JQuery. Having it where the image changes depending on which link you hover over.
  5. CaldwellYSR

    How do I set the css height on divs to automatically be the same?

    Haha have you ever seen the </head><body> tattoo?
  6. CaldwellYSR

    How do I set the css height on divs to automatically be the same?

    Well the jquery method will work. You need to put this in your <head>: <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> then in another script tag put: <script> $(function() { var h = $("#center").outerHeight(); // outerHeight return...
  7. CaldwellYSR

    How do I set the css height on divs to automatically be the same?

    Hmmmm it says invalid property value... syntax looks right though. Not positive. Try looking here at border images and multiple background images. I've never actually worked with either of them because I haven't ran into a situation where I needed it but it looks like example 27 should fit your...
  8. CaldwellYSR

    How do I set the css height on divs to automatically be the same?

    It was an exaggeration... you have 11 empty divs for the soul purpose of having a border image. That's unnecessary. If you use the method I described you won't even have to worry about the div height.
  9. CaldwellYSR

    How do I set the css height on divs to automatically be the same?

    Holy jesus, mary, and joseph dude! You have 70,000 divs in there just for that border image? There are much easier ways to do that with CSS. You can set background images to certain positions and repeats so in your case it would be... background: url(topleft.png) top left no-repeat...
  10. CaldwellYSR

    How do I set the css height on divs to automatically be the same?

    oh... well the error you're getting is because that's not php code :P looking at keens answer I think the problem you're having is much easier fixed than what I was thinking. If all of your columns are wrapped in a container then you can just put overflow: auto; or overflow: hidden; on the...
  11. CaldwellYSR

    How do I set the css height on divs to automatically be the same?

    That looks like a php error not a jquery error? Do you have jquery loaded on your page? Did you make sure to put that function in a js file and not a php file?
  12. CaldwellYSR

    How do I set the css height on divs to automatically be the same?

    I would use jquery to do it. Something simple like... function column_height() { var h = $("#center").outerHeight(); // outerHeight return height plus padding $('#leftcol').css('height', h); $('#rightcol').css('height', h); } then you'd just call the column_height() function at...
  13. CaldwellYSR

    Does GIMP or Paint.Net use slice tool and output css like Photoshop can?

    It's not a matter of speed it's a matter of having good and valid code. Images are inflexible. Your site isn't going to look the same across browsers and operating systems. The advancements in CSS3 I've been talking about are things like box shadows, gradients, border radius, alot of design...
  14. CaldwellYSR

    My first website

    I'm glad you liked Aptana Studio! Once you get to know it more you'll have it customized to fit your workflow! :)
  15. CaldwellYSR

    Javascript Gallerific Problem

    Did you make sure to upload the images? Also do you have a live link so we can check it out too?
  16. CaldwellYSR

    My first website

    DW has code assist ;) I could see making small changes in notepad or textedit (or gedit for awesome linux ppls) but I couldn't see actually trying to make a full site that way. If you do that then more power to you :P
  17. CaldwellYSR

    Which Online Sitebuilder is Best?

    None of them are the best. None of them are even worth their price... even if the price is free they're useless...
  18. CaldwellYSR

    Does GIMP or Paint.Net use slice tool and output css like Photoshop can?

    What's wrong is that websites shouldn't be made with images. They should be made with code.... With all the advancements in CSS3 there's very little use for images anymore. There's no reason to let a graphics program try (and fail) to put out good CSS code. It's not 1998 anymore...
  19. CaldwellYSR

    Should i even consider IE before publishing? It destroys my whole design!

    Well yeah I agree but it could be worse... at least some of them agree ;)
Top