Jump to content

benjaminmorgan

Member
  • Posts

    226
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by benjaminmorgan

  1. Thanks, it worked when I added it to the body element.
  2. I have my content and other divs that are doing this 100% and I have a background color on it. However when i zoom in and scroll over it is a giant white space. The only way to fix it is to add a background color to the body but then it doesn't help the footer, header or navigation. What can I do to fix. Actual website is in the footer. This is what I'm talking about.
  3. I am looking to start learning a CMS other than Wordpress. I am wanting to be able to create a template that has 3 columns for example in the content of the page. I want the user to be able to edit the columns without having any html/css knowledge and it would only be on one page. Is there any CMS that can do this?
  4. Here are the roadmaps for each. Web Design Roadmap: http://killersites.com/roadmaps/web-designer.php Web Developer Roadmap: http://killersites.com/roadmaps/web-programmer.php The main difference is that the designer focuses more on design aspect while the developer focuses more on the programming with Javascript and PHP and learning more than the basics of each language.
  5. I hope it does end up taking over. I like Chrome. The only thing holding IE up is that it is installed on all windows computers by default. Most regular people don't know what a browser is. They think Internet Explorer is just "the internet"...
  6. If you post the PHP code here it would definitely help us solve your problem.
  7. I would remove the / before favicon and it should work if you are using it as localhost.
  8. Nah, don't mess with the code in the fancybox. Just do that. You shouldn't have to rezoom anything.
  9. I meant you could add a class to the img with your css code. doing this with the code below, OR set the width and height to the widht and height of the img in pixels. .classofimg { width: 100%; height: 100%; zoom: 1; } <a class="fancybox" title="This is my image catpion" rel="group1" href="images/aa01.jpg"><img src="images/aa01_t.jpg" alt="" class="classofimg" /></a>
  10. The only thing I could think of is make sure you don't have a class on it that is being sized in the CSS. Also make sure there is no zoom in the css. If you can't find anything try adding a class to the image and setting the width and height to 100% or the direct size of the image. .classofimg { width: 100%; height: 100%; zoom: 1; } EDIT: Also make sure you are not using an id twice for an image, and if you have a class make sure it isn't also used on another image being resized.
  11. Thanks Ben, I normally just use the reset to take off the margins because i always have problems with heading tags so i just style them myself.
  12. Nevermind, it works if I add * {padding: 0px; margin: 0px;} Can't believe I forgot the CSS reset.
  13. I have a layout, I can't remember what to do to fix it and google hasn't been any help. Here is an image of what its doing. Here is my code HTML <div class="header"> <div class="container"> <p style="float: left;" class="whitet">Logo here</p> <p class="whitet" style = "float: right;">CONTENT HERE</p> </div> </div> <div class="process"> <div class="container"> <p class="whitet" style="font-size: 12px;padding-top: 200px;">Here is some content right here<br>Here is some more content in this very spot</p> </div> </div> <div class="content"> <div class="container"> <div> <p class="whitet">content here</p> </div> </div> </div> CSS body { margin: 0 auto; font-family: Tahoma, sans-serif; } .container { width: 960px; margin: 0 auto; padding-top:0px; padding-bottom: 0px; margin-top:0px; margin-bottom: 0px; } .header { background: black; height: 100px; } .process { height: 300px; background: green; } .content { height: 500px; background: red; } .whitet { color: white; } ALSO it isn't there when I remove the p tags but I kindof need them for content.
  14. I really don't understand what you mean? When you add a background image by background: url('url here'); it should repeat automatically. If it isn't patterning correctly look here http://graphicssoft.about.com/library/weekly/aa080499p2.htm it might help
  15. Well just find where it starts at the top, then add a width and height.
  16. The red bars do mean no support. Green bars mean full support. The lighter colored bars mean partially supported. You can click the arrow to see which ones are supported on the lighter colored ones.
  17. He shouldn't have to use the new line character because it is displaying in HTML not an email.
  18. Try a comma after these lines firstname varchar(255) NOT NULL and seniority date NOT NULL default '0000-00-00'
  19. I'm pretty sure it's best practice to keep all tags lowercase.
  20. I think you should just be able to make a container div around the top 2 divs and give it a height. Then put a div around the bottom two and add height.
  21. I love Dropbox! Thanks for the bonus 500 MB Eddie.
  22. Lol Andrea. I prefer hand coding my own designs as well. I hate figuring the stuff out on templates. And you do learn loads more by recreating. It is probably faster as well.
×
×
  • Create New...