Search results

  1. CaldwellYSR

    Stupid simple css question

    Ah interesting. Any clarification on how that works? It worked for me because I also have a footer within that container that has clear: both and width: 100% but why does that fix the problem?
  2. CaldwellYSR

    Stupid simple css question

    oh no I take it back! :( I forgot to add float left to the content. Sorry guys false alarm! a;oierkljd I've been googling for the past half hour for such a stupid mistake. Is it possible to delete this thread?
  3. CaldwellYSR

    Stupid simple css question

    I should know this. I'm 99% sure I figured it out at one point and since I've moved on past css I've forgotten it. How do I make a floated div have the height of it's container div? Basically I've got 3 divs that are effecting this problem. I've got a container div, a nav div, and a content div...
  4. CaldwellYSR

    WebSite Templates

    Every post you've had since you joined in 2009 has been "how do I do what they did on (insert arbitrary site)" All 5 posts since 2009.... that's fishy dude just saying :P To answer your question though.... Ronald Roe has it right. It would be very easy. Check out the source code to see how they...
  5. CaldwellYSR

    Digits

    Need more information... How is the database set up? Is that just one field or what?
  6. CaldwellYSR

    Creating Landscape Certificates on HTML Webpages

    Well you can rotate images with css why not just rotate it with preview or whatever the windows equivilant is? Rotate the image before you put it into the page? Images will go in whatever way you want them to go.
  7. CaldwellYSR

    Can you share your ideas?

    <html> <head> <title></title> </head> <body> </body> </html>
  8. CaldwellYSR

    Custom home page.

    interesting. Thanks! :)
  9. CaldwellYSR

    Custom home page.

    So I'm messing around with my local server and I had an idea to build a custom home page. I want it to basically be a collection notifications. The idea is to have a thing to show if I have new facebook notifications with a link to facebook, something to show if I have new emails with a link to...
  10. CaldwellYSR

    slicing question

    if you don't want to learn code then you don't want to design websites. By all means if you don't want to learn it then don't... go hire someone that knows how to do it and actually enjoys it.
  11. CaldwellYSR

    Diagonal Navigation with Rollover Images

    Transparent! Duh that would be easier :P I forgot all about that
  12. CaldwellYSR

    web form help!!!

    Try this. Once you use this to grab the info you would just write it out with javascript where you want it.
  13. CaldwellYSR

    web form help!!!

    Javascript can do it. In your form put an "onsubmit" function and in that function have an innerHTML to write it where you want it.
  14. CaldwellYSR

    Javascript date object

    That doesn't set it for a specific time zone though does it? That will just output the client time zone. I'm wanting to show the client time zone and a specific time zone at the same time...
  15. CaldwellYSR

    need help with rough layout for artist/musician webpage

    the lynda tutorials will really help. As for the questions, they're all definitely possible and relatively easy. If you want something to stay put and not respond to scrolling then in the css give that element {position: fixed;}, to center a div give it {margin-left: auto; margin-right auto;}...
  16. CaldwellYSR

    PSD to HTML?

    Dreamweaver, but I wouldn't do it. Learn to actually write html/css code because the method you're wanting to go will give you bad code that will break easily.
  17. CaldwellYSR

    Blog coding help

    Yeah a blog is just like an article so you would use the html to write whatever content you want and css to style it. The comment section though would require php and mysql because it would be stuff submitted from other people. So you'd put a form at the bottom of the page with a textarea for...
  18. CaldwellYSR

    animated hiding divs

    Here's how I would do it. Instead of the div's having background images I would put... <style> #link3img { insert whatever css you want; } #link3 { display: none; whatever other css you want; } </style> <div class="contentLink"> <img...
  19. CaldwellYSR

    Blog coding help

    You could do it with html and css but if you're wanting other people to be able to write in this blog you should probably use a cms or php.
  20. CaldwellYSR

    Diagonal Navigation with Rollover Images

    The images aren't actually diagonal. Each image is a rectangle with the diagonal white part you see and then the rest of the rectangle is the correct color to line up with the image beside it. So since it matches up like that you see the white diagonal lines and you don't see the yellow part...
Top