Search results

  1. CaldwellYSR

    Design with fixed side menu

    big divs on the left and right (or a more appropriate html5 block element like aside depending on the content of the block) would have position: fixed; top: /* px to position them */ left: /* px to position them */
  2. CaldwellYSR

    Beginner: Some questions for designing my site

    Most all online site builders are going to be.... well they're going to be crap. If you want something done right you should either a) learn the code to do it yourself or b) hire a web designer to do it for you. If you decide to hire someone and you explain to them about the updates, that...
  3. CaldwellYSR

    Web page scrolling of screen

    A great tool for figuring out weird things like that is Firebug. With firebug you can see all the code, make changes, and see the changes live on your screen. Also you can use the "inspect" tool to highlight areas on the page and it will show you where in the code that area is. Google Chrome has...
  4. CaldwellYSR

    Web page scrolling of screen

    your sidebar is 30,000px tall... What the crap is this: /*DO NOT EDIT*/ .p7desktop .sidebar { padding-bottom: 32767px; margin-bottom: -32767px; }
  5. CaldwellYSR

    Getting Into Web Design

    I agree with everything Phreaddee said. There was another thread not too long ago with good advice. I'll quote that as soon ass I find it. Turned out to be Phreaddee again... go figure
  6. CaldwellYSR

    Wordpress Menu with a login link

    Alright I figured it out. Using the selector li:last-child I was able to get it work work the way I wanted.
  7. CaldwellYSR

    Wordpress Menu with a login link

    Because I already have it written in the static HTML. I assumed porting it over to the theme would be a simple process. All I need is to append another li>a to the end of the navigation...
  8. CaldwellYSR

    Wordpress Menu with a login link

    So I have a custom wordpress login form that hides itself and then slides in when you click the login button using jquery. It all works nicely when it's just static content, but I'm running into a problem when I add wp menus in. Basically when it's static my menu looks like: <nav...
  9. CaldwellYSR

    Absolute Postion and Cross Browser

    In this case if everyone avoided the problem then maybe people would stop using IE and/or Microsoft would fix their browser.
  10. CaldwellYSR

    Absolute Postion and Cross Browser

    I use it on my site because I have alot of absolute positioning. Plus I pretty much refuse to build for anything less than IE 9.
  11. CaldwellYSR

    Absolute Postion and Cross Browser

    Yes that's exactly what it does! :) It's a joke answer because I'm sure that's not what you wanted but it's what I do.
  12. CaldwellYSR

    What building tools should I use?

    wordpress.com is for blogs, wordpress.org is a CMS which is pretty strong and one of the more popular ones today. It has login features like you wanted and there are thousand of themes to choose from. You could also make your own custom theme if you wanted, or hire someone to make a theme.
  13. CaldwellYSR

    Absolute Postion and Cross Browser

    I have the perfect solution for IE. First in the <head> of your html you put <!--[if lt IE9 ]> <script type="text/javascript"> window.location = 'ie.html'; </script> <![endif]--> then your ie.html looks like this. <!DOCTYPE html> <html> <head> <title>Internet...
  14. CaldwellYSR

    What does my website look like on other devices?

    Also the android SDK comes with tools for setting up emulators
  15. CaldwellYSR

    Website Tonight?

    Good point
  16. CaldwellYSR

    Website Tonight?

    @sdesign1 I would have no problem putting wordpress on there she just doesn't want wordpress. She's been using Website Tonight for a few years and I can persuade her to make the change.
  17. CaldwellYSR

    Website Tonight?

    Yeah I'm not sure how it works, was just given access today. I can't really make heads or tails of it.
  18. CaldwellYSR

    Website Tonight?

    I'm working on a soccer team's website for my aunt as a resumé builder. She has hosting with GoDaddy using Website Tonight as the CMS? Is it a CMS? I don't really know what it is but the current site is using a typical soccer template from Website Tonight. I was wondering if any of you knew the...
  19. CaldwellYSR

    File security

    Thanks for the link, good info there.
  20. CaldwellYSR

    File security

    I wasn't quite sure where to put this so I'm just going to stick it here and if it needs to be moved then I'm sorry. Anyways I am working on a mini CMS for my current employer so that they can embed woofoo forms into pages and/or make new pages. I've almost got it finished and ready to go online...
Top