Mario Making Mods

IceFairyAmyUser is Offline
Banned permanently: Jamie Rereg
  • Banned
Since: 05-19-17
A guide on how to make a post layout!

First off, you need some basic HTML and CSS knowledge, to make a decent enough layout so that it is readable. :)

You need to put in the post header:
<style>
~~layout code go here~~
</style>

Next, we need to add the correct classes. The tilde will be used in place of your user , please make sure you get this correct for each class or it will screw up other people's layouts when they post in the same thread and page.

.mainbar~ - Controls the background and general elements of the post.
.sidebar~ - Controls the sidebar of your posts.
.topbar~_1 - Controls the left side where your username is displayed on the top bar.
.topbar~_2 - Controls the right side where the 'Link' 'Quote' and post date etc. are listed on the top bar.

Additions to .mainbar~, these can be placed by writing '.mainbar~ .newclass' in your post layout.

.quoteheader - Controls the 'Posted by' on the quote header.
.quotecontent - Controls the actual quote's contents.
div.codeblock - Controls code BBCode tag blocks.
.spoilerbutton - Controls the spoiler tag button.
.spoiled - Controls the content inside a spoiler.

Another thing you can do is add a Post Box with a DIV, you can do this by making a class of whatever name you want, setting a custom margin and padding, and then setting up the rest of it yourself. Remember to add after the style tag your div class, and close it in the footer.

Here's an example code to help you out, it is the same as the code on my layout.
Header:
<style>
.mainbar1 {
background:url(http://i.pi.gy/WRmP.jpg) center top !important;
background-width:100% !important;
color:white;
font-family:Tahoma,sans-serif;
border: 3px solid #066;
text-shadow: -1px -1px black, 0px -1px black, 1px -1px black, 1px 0px black, 1px 1px black, 0px 1px black, -1px 1px black, -1px 0px black;
}

.sidebar1 {
background:url(/themes/bstruct/back.png) repeat !important;
color:white;
font-family:Tahoama,sans-serif;
border: 3px solid #066;
text-align:center;
}

.topbar1_1, .topbar1_2 {
background: #066 url(/themes/glossy/generic_gloss.svg) repeat !important;
background-size:100% 100%;
color:white;
font-family:Tahoma,sans-serif;
}

.topbar1_1 {
text-align:center;
}

.mainbar1 div.codeblock {
background:rgba(0,0,0,0.2);
color:white;
}

.postbox1 {
margin:20px;
border:3px solid #066;
background:rgba(0,102,102,0.65);
}
</style>
<div class="postbox1">
Footer:
</div><div class="postbox1">[user 1]</div>

Make sure to disable signature separator and then set 'Apply layout to entire post box'.

Tips:
* Make sure your layout is readable on all themes. This is usually done by manually forcing a colour.
* Don't use GIFs in your background.
* Keep signature at around 200px or smaller in height.
* Feel free to customise it to the max!
* Check your layout is fully compatible with Google Chrome and Mozilla Firefox, since these are the most-conforming to web standards.
* Don't use fixed backgrounds as they lag the page on some browsers such as Safari and look odd on mobile devices.

Hope this helps! :D
(Note that the reason I didn't use my ID here on the example is because I copied it from my own board.)
Posted on 05-19-17, 05:27 pm in How to make a post layout! (rev. 3 by NightYoshi370 on 06-29-17, 02:58 pm)
IceFairyAmyUser is Offline
Banned permanently: Jamie Rereg
  • Banned
Since: 05-19-17
http://www.romhacking.net/utilities/773/

Lazy Shell is a third party .NET application written in the C# programming language which is capable of editing a wide range of elements within the Super Mario RPG (US) ROM image file. These elements include allies, battle animations, attacks, spells, sound effects, music, battlefields, dialogues, fonts, effects, events, formations, items, shops, level/location maps, the main title, menus, the mine-cart maps, monsters, sprites, world maps, and more. In addition, it also includes a help database and a project manager to help organize a full hack project.

I haven't use this tool myself, but it's a VERY useful SMRPG hacking tool for those interested in hacking said game, as far as I can tell. ^^

You'll need the .NET framework 2.0 (which can be get on Windows 10 through Control Panel > Programs > Turn Windows Features On Or Off), in order to run this. It'll take a while to get from Microsoft's update servers.
Posted on 06-16-17, 08:08 am in Lazy Shell ~ SMRPG editor
IceFairyAmyUser is Offline
Banned permanently: Jamie Rereg
  • Banned
Since: 05-19-17
Hey. I'm Vanilla Lumina. I'm a retro gamer and computer enthusiast who is mostly looking for a nice community, because I don't have a modern console. Was referred here by maorninja, I was told he is hosting the site.

I may also be able to make a theme for this forum soon if you like. ^^
Posted on 05-19-17, 04:56 pm in Introduce yourself!
IceFairyAmyUser is Offline
Banned permanently: Jamie Rereg
  • Banned
Since: 05-19-17
Hey. Anything up? I just got home from shopping at Asda (yeah, I'm from England), so have a nice stock of food for the week. Going to have pizza which was in-store made later for dinner. ^^
Posted on 05-19-17, 05:03 pm in Toad Chat
IceFairyAmyUser is Offline
Banned permanently: Jamie Rereg
  • Banned
Since: 05-19-17

@import url('/css/borders.css');
@import url('/css/roundcorners.css');
@import url('/css/lightcolors.css');

body {
background:url(https://image.freepik.com/free-vector/abstract-yellow-texture_1100-141.jpg) repeat;
font-family:Tahoma,Helvetica,Arial,sans-serif;
}
.cell0 {
background:linear-gradient(yellow,gold);
}

.cell1 {
background:linear-gradient(gold,yellow);
background-size:100% 100%;
}

.cell2 {
background:linear-gradient(gold,khaki);
background-size:100% 100%;
}

.header0 th,.header1 th {
	background:linear-gradient(rgba(128,128,0,0.5),rgba(255,255,0,0.5));
	color:black;
}

td.post {
	background:linear-gradient(rgba(255,128,0,0.5),rgba(255,255,0,0.5));
}

table.post {
	background:linear-gradient(gold,yellow);
}

button {
	border-radius:10px;
	background:black;
	border:gold;
}

.userlink {
text-shadow: -1px -1px black, 0px -1px black, 1px -1px black, 1px 0px black, 1px 1px black, 0px 1px black, -1px 1px black, -1px 0px black;
}


Currently working on this at the moment. Let me know what you think.
You can preview it in my profile, or in this thread. Some themes might mess up the style.

I haven't got a name for it either.
Plus, another thing, anyone is able to now improve the code should they wish to ^^
Posted on 05-21-17, 12:53 pm in Board Theme
IceFairyAmyUser is Offline
Banned permanently: Jamie Rereg
  • Banned
Since: 05-19-17
He'd probably call this a derpfork knowing him.

/me runs
Posted on 05-27-17, 11:06 am in Blalmboard
IceFairyAmyUser is Offline
Banned permanently: Jamie Rereg
  • Banned
Since: 05-19-17
being an idiot
Not true. :/
Posted on 05-28-17, 01:18 pm in What are your greatest life achievements?
IceFairyAmyUser is Offline
Banned permanently: Jamie Rereg
  • Banned
Since: 05-19-17
Yep. And at least it isn't infinite maintenance like RVLution.

To them, 'soon' is 2029.
Posted on 05-28-17, 01:45 pm in Excuse me for the downtime >_>
IceFairyAmyUser is Offline
Banned permanently: Jamie Rereg
  • Banned
Since: 05-19-17
Because people are hating on the board again, that's why.
Posted on 05-28-17, 03:48 pm in So we already got some hate on the board.
IceFairyAmyUser is Offline
Banned permanently: Jamie Rereg
  • Banned
Since: 05-19-17
They are, I was able to tell from the CAPTCHA system that they use, which is exclusive to ByetHost. Not faulting them in any way but they are an off shore host, and they will from time to time check your website most probably, but not as often as actually being on Byet.
Posted on 06-07-17, 03:43 pm in Toad Chat (rev. 1 by IceFairyAmy on 06-07-17, 03:43 pm)
IceFairyAmyUser is Offline
Banned permanently: Jamie Rereg
  • Banned
Since: 05-19-17
It's not going to be like Blargboard's normal view - it's going to scale properly to mobile devices, Aileen knows what she is doing. <3
Posted on 06-10-17, 09:32 pm in New upcoming forum software: Lunarboard (rev. 1 by IceFairyAmy on 06-10-17, 09:32 pm)
Posted on 06-11-17, 06:57 pm, deleted by NightYoshi370: Drama
#910
Posted on 06-13-17, 04:22 pm, deleted by NightYoshi370: Response to drama
#933
IceFairyAmyUser is Offline
Banned permanently: Jamie Rereg
  • Banned
Since: 05-19-17
Thanks. I wasn't too sure about the decision to do it, that's all ^^
Posted on 06-30-17, 08:56 pm in Post Layouts Guide