Jump to content

cssfreakie

Staff Alumni
  • Posts

    1,674
  • Joined

  • Last visited

Everything posted by cssfreakie

  1. I don't know what browser/version you use, but if you don't have javascript that applies these style i guess it's normal.
  2. maybe because it's the natural behaviour for suchs elements, does it say display:block; on div's too?
  3. hmm i'll have a look at that IE9 certainly is faster nice thx guys!
  4. well i tried IE 9 and I was pretty happy with the speed, only thing it doesn't have is firebug
  5. Hi all, I just installed the new version of Firefox, and everytime I visit a website with a secure login (https:// ) I get the unpleasant message of untrusted certificate "This Connection is Untrusted" (even at mail.google.com hotmail, et cetera) Anyone else has this? It's really sucky and it reminds me of IE ahhh!!
  6. I would change the color of the list headings at the Plans page in to something other than black, maybe nice green or blue (soft ones): http://www.crambu.com/pricing.php
  7. I would offer complete packages, most customers probably have no idea what to choose. besides that, there is some scientific proof that if people are to choose between a lot of things it actually stops them from buying stuff. As for your prices, You can have competitive prices, but cheap quite often triggers a feeling that it must be crap. To give an example, i know someone, that sold cookies (big time) all kinds of, but certain cookies didn't want to sell, so he doubled the price of it and gave it a better spot, and sold them all. (allowing him to buy a huge house when he was 25) But if you sell something your product must be good. No matter what your price is.
  8. Hi Natasha, this is a website on how to write disallow things in a textfile: http://www.robotstxt.org/orig.html#examples As far as being still indexed, i think it will takes some time for google to remove your from their index, here is some info, i think you can use google webmaster tools for this, never done it though http://www.google.com/support/webmasters/bin/answer.py?answer=164734
  9. It could be anything, but like i said above i don't like zipfiles. Got an online example?
  10. as far as i know you can't set a width to the body, like you did, you need to set it to for instance a wrapper dive inside it. Also, do you have a valid doctype? And maybe have it online somewhere so i can have a look.
  11. would be nice to post your solution, so instead of only requesting help, you also help others out that might search and end up on your thread.
  12. the link you provided doesn't work. Anyways if you are not displaying data like a stylesheet, don't use tables. Div's work perfectly, I recommend to have a read into the Float and clear property. Don't forget to read the sticky btw.
  13. Yeah certainly check out that video (only 5 min:). Firebug is your best friend when it comes to css. you can change the code in your browser and immediately see the effect. when it looks good, just copy and paste the code in your real stylesheet and upload it. Anyway if you need help with css, just post it here, there are quite some people here that like to help out. A nice thing would be to start and create your own template, it doesn't have to look good, but it sure is a nice practice, and you might even do it better than the person that initially made your template.
  14. i don't like zip files, maybe got an online example of what your doing, happy to have a look.
  15. Well i agree on the readability, But I totally disagree on the inline style. Inline style is slower, redundant and doesn't separate concerns. But do as you like. For instance a table with valign-top on the td elements. Now say you have a table with 10 columns and 50 rows. If you would do that inline style you end up declaring it 500 times instead of 1 time. And readability, I have never seen extra added inline style that made the initial mark up more readable ever.
  16. well that is a bit tricky when the wrapper has a width of 100%, anyways i tried the code below in the newest version of opera and firefox and it seems to look the same. Although i changed the following line which is full of errors: <h1><a href="index.php">Header stuff here</h2> to <h1><a href="index.php">Header stuff here</a></h1> I also added a little color to the background so i have some more visual reference of what i am doing instead of blindly guessing <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head><title>align stuff</title></head> <body> <style type="text/css"> html { padding:0; margin:0;} body { margin: 0; padding: 0; background:#A5DDF8 url(images/main_bg.png) top repeat-x; font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif; color: #000; text-align: center; /*direction: rtl;*/ } #wrapper { width: 100%; margin: 0 auto; padding: 0; border: 1px solid #fff; } #head { margin: 0 auto; width:966px; background:#f4a; } #loginInfo{ width:400px; float: right; clear: left; border: 1px solid #b30f0e; font: normal 0.7em Tahoma, Geneva, sans-serif; color: #fff; } </style> <div id="wrapper"> <div id="head"> <div id="loginInfo">Logged in data here</div> <div id="header"> <h1><a href="index.php">Header stuff here</a></h1> </div> </div> </div> </body> </html> _edit: you might consider to use something as a reset.css (see sticky)
  17. well that is something different, maybe ad this: #loginInfo{ width:400px; float: right; clear: left; border: 1px solid #b30f0e; font: normal 0.7em Tahoma, Geneva, sans-serif; color: #fff; padding:0; margin:0; } But without html code, this will just be guessing
  18. well your css looks okay, what does your html look like or maybe got an online example?
  19. wrong forum dude, this is about css not widgets or apps
  20. I am pretty sure you can do the same with min-height. And maybe even a position relative of 100% to the parent element. But I havent tried it yet, but i pretty sure it's possible. But maybe a little more tricky. I stand corrected, the height is indeed the issue here.
  21. thanks Nightslayer, I changed it cheers!
  22. I am pretty sure you can do the same with min-height. And maybe even a position relative of 100% to the parent element. But I havent tried it yet, but i pretty sure it's possible. But maybe a little more tricky.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.