Jump to content

F-Man

Members
  • Posts

    222
  • Joined

  • Last visited

Posts posted by F-Man

  1. After some testing...

    p {   text-align: center;   margin: 50% 0;}

    Sorry for my previous post, I was wrong.EDIT: ok, that just doesn't work properly at all, it seemed to at first... Anyway, I don't know now. I woulda thunk vertical-align would be the way to go but it didn't work. :)

  2. I don't see where a table belongs in this scenario. You can apply a border to images you know, not only tables...However, I tried exactly the same thing and had the same problem but in Firefox, not IE6, weird huh?Anyway, I can't help you there, sorry...

  3. It's working for me.Shadowspinner, try adding at least one space between your CSS selectors and their properties. (#1 { blah blah }).Also, your #2 div:<div id='2' style = "float:right;border: 10px solid #5bf95f;background-color=#05a531">Should use a colon, not an equals sign after background-color.

  4. I voted Yes because it can only benefit. However I don't think it's top priority. We're old enough to control ourselves, and bad topics already get handled by posts from other members saying this is not the right place. The only reason where more mods would be absolutely needed is if some people started spamming (litterally flooding) the boards.

  5. Skemcin, my original post was just offering you help because I think it is important to understand that simple HTML validity is not the only thing that matters. You did not have to change your site to follow my "suggestions", which you said were awesome by the way. So now that I cleared the fact that the second sentence of my post was not insulting (and my second post was just replying to you), may I ask what IS wrong? YOU are the one insulting here.I did not have any directions to point because you understood my original post anyway (and even analyzed it). If you still want me to point directions, then I would say www.w3.org but you already know that site I'm sure.Different OS don't matter, it's the browsers. Now, I know IE5:mac is different (and IE6:mac doesn't exist...) but I also know that it supports CSS quite well anyway and that it is so much unused I don't know why we're talking about it here...And I am not learning HTML and CSS at school. Though we do have HTML courses, they're just bad and I'm way better than the teacher anyway. I learned it all 4 years ago on w3.org.But that is not important, I was just pointing you to stuff you could have done to improve in terms of coding your website (and NOT your clients' websites). You decided to reject them so there is no point to keep arguing.

  6. Skemcin,a) All browser versions that are used by more than 1% people tend to handle CSS layouts correctly.b.) You can just style them with CSS so that browsers display them the same (mainly the margin).c) Of course I must say I am quite new to web developping, a lot more than you, but still, I never saw a browser that didn't support :hover on links.d) No no no no no, I was not using sarcasm nor insulting. In fact, I couldn't have been more serious. And guess what, I am ready to say I'm part of that 99.999% of the population. I make sure to test my pages with IE 5 and up as well as Gecko and Opera, they are quite accessible. Also, sorry for us french-speaking people to use commas for decimals.e) Why would I have any direction to point?I have nothing perfect to show you, maybe except this thing which I very rarelly put any interest onto.

  7. Heh... Table layout, bad use of br (should be p), use of JavaScript where CSS could give the same result, probably more... Not yet perfect. =) But hey, can't blame you for being part of 99,999% of the population.

  8. <div style="display: block;">stuff</div>

    Hm? DIVs are already blocks by default...pnwynn, maybe this is what you want?
    div {   height: 3em;   overflow: auto;}

    By placing this in your CSS, it'll make the content of a <div /> 3 lines in height, with a vertical scrollbar to view the remaining of the text. It cannot be applied to a table though...

×
×
  • Create New...