Jump to content
MakeWebGames

Markku

Members
  • Posts

    137
  • Joined

  • Last visited

Everything posted by Markku

  1. Vikings Amazing TV series! SGU Stargate Universe I enjoy watching this, It's different and interesting. Game of Thrones One of my favorites. Sherlock It's Sherlock Holmes! :O
  2. Android for me, I love android mobile phones, The OS is smooth, responsive and simple. + There's sooo much apps on the "Google Play Store" ^_^
  3. Hmmm I see, I will try and use them like that and see which way I prefer. But I see how that way works also. Thanks for that, I did not think to use functions in that way. ^_^
  4. Great thank you for that! I have edited my original post ^_^
  5. Hmmm I kinda understand, I think I know what you mean... So in short, global $h; wouldn't be needed in order for those message boxes to work correctly as they do now? Thank you for your input also, Means a lot to me.
  6. Awesome reply [MENTION=68711]KyleMassacre[/MENTION] ^_^ I like this tagging... :D Great additions to the forum!
  7. Thanks :) I've been learning for around 2 months now ^_^
  8. Hii everyone, This is my first time working with MCCodes and I decided to update the mailbox a little as it could do with a little update :) I haven't been programming very long at all, I am new to all this but here goes. The icons used on this mailbox are from Silk Icons (free) Please note: This mailbox uses functions which are not in the standard MCCode engine, please place this into your global_func.php (Will be used on future modules) /* MESSAGE BOXES */ function info($text) { echo "<div class='message-box info'><p>", $text, "</p></div>"; } function success($text) { echo "<div class='message-box success'><p>", $text, "</p></div>"; } function alert($text) { echo "<div class='message-box alert'><p>", $text, "</p></div>"; } function error($text) { echo "<div class='message-box error'><p>", $text, "</p></div>"; } function general($text) { echo "<div class='message-box general'><p>", $text, "</p></div>"; } /* END MESSAGE BOXES */ CSS for message boxes /* MESSAGE BOXES */ .message-box { text-align: center; padding: 5px; color: #000; width: 85%; margin: 5px auto; line-height: 20px; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; } .general { background-color: #efefef; border: 1px solid #dedede; } .info { background-color: #f7fafd; border: 1px solid #b5d3ff; } .success { background-color: #d7f7c4; border: 1px solid #82cb2f; } .alert { background-color: #fef5be; border: 1px solid #fdd425; } .error { background-color: #ffcdd1; border: 1px solid #e10c0c; } /* END MESSAGE BOXES */ mailbox.php Pastebin (mailbox.php) (Code placed on pastebin due to issues with <br /> on forum.) Screenshots [ATTACH=CONFIG]1402[/ATTACH][ATTACH=CONFIG]1403[/ATTACH][ATTACH=CONFIG]1404[/ATTACH][ATTACH=CONFIG]1405[/ATTACH][ATTACH=CONFIG]1406[/ATTACH] Added Screenshots [ATTACH=CONFIG]1408[/ATTACH][ATTACH=CONFIG]1409[/ATTACH] Okies, that should be all I hope, If you encounter errors/problems, post here I will try to fix. Thank you! ^_^
  9. I see this on Netflix the other day whilst on my PS4, I keep meaning to watch the show but never get around to actually pressing "play". Is it really as good as everyone says?
  10. Hi everyone, Just wanted to share a great website that I use to get font families. It's great, It's a whole collection of web safe fonts, You just click on it and it copies and then you paste! Soo simple. http://cssfontstack.com/ It might not be the most resourceful website, But maybe it can help some people, it helped me. (^_^)
×
×
  • Create New...