Jump to content

Anders Moen

Members
  • Posts

    866
  • Joined

  • Last visited

About Anders Moen

  • Birthday 07/21/1991

Previous Fields

  • Languages
    XHTML, CSS, JS, PHP, MySQL

Contact Methods

  • MSN
    msn@andersmoen.com
  • Website URL
    http://www.andersmoen.com
  • ICQ
    0

Profile Information

  • Location
    Norway
  • Interests
    http://www.andersmoen.com

Anders Moen's Achievements

Invested Member

Invested Member (3/7)

2

Reputation

  1. Yeah, but you can also go to www.php.net/gd
  2. Congratulations with your birthday :)

  3. Finally I'm happy with the design on my site!If you could please tell me how it looks now I would be really happy. Feel free to comment my blog too.www.andersmoen.com (frontpage)www.andersmoen.com/blog/ (blog - this is where I have more content than on the other pages if you need content to see how the site looks)
  4. Well, how come it worked when I wrote the code in Opera then?
  5. But try to not use style="" because it gets very much code that's not necessary in the document :)Use CSS files.In example:CSS (Save this as style.css for now) #some_name_one { width: 100%; text-align: center; }#some_name_two { width: 50%; text-align: center; } (X)HTML <div id="some_name_one">Here is some text :)</div><div id="some_name_two">Here is even more text</div>
  6. If I don't remember wrong: don't use quotes around numbers <?php// $b = "1325346"; This is wrong$b = 1325346; // This is rightecho $b;?>
  7. boen_robotI agree to that. Totally unecessary really. What if everybody made a new topic when they hadn't been here for a little while? That would be many topics for nothing...But welcome back anyways.
  8. No problem, SubZero.
  9. Thanks for helping me!

  10. If you don't write anything in the div's it won't work. Just put inside or something like this: <div id="one"><div id="two"> </div></div> I didn't go through the little code you have, so it might be something wrong with the code too. I haven't time to check rigth now so.Edit:Try something like this:CSS #one {width: 100px;border: 1px solid black;}#two {padding: 10px;border: 1px solid black;}#three {padding: 10px;border: 1px solid black;}#four {padding: 10px;border: 1px solid black;} (X)HTML <div id="one"><div id="two"><div id="three"><div id="four"> </div></div></div></div> Here's the result
  11. This is HTML: <input type="text" name="adsftgd" value=""> And this is XHTML <input type="text" name="adsgdgf" value="" /> In other words; A space and the slash is XHTML and just this > is HTML if you understand.Like a link should not be like this because it has a starting AND an ending tag (<a></a>), and image has not (<img>)Hope you understood and good luck further
  12. Where's the first post? :SEdit:It says this post is the first post too =/That's what I hate about forums...there are always something with them, hehe.
  13. Ok, seems like it would work then
×
×
  • Create New...