Notings of Attention™
Acmlmboard 2 Released
Github/GIT | @acmlmboard
Chatting Places
Discord

Affiliates
Super Mario Bros. X | Kuribo64
Views: 8,987,599
Main | FAQ | IRC chat | Memberlist | Active users | Latest posts | Stats | Ranks | Online users | Search
04-20-24 07:24 AM
Guest: Register | Login

0 users currently in Creativity and Artwork Showcase! | 2 bots

Main - Creativity and Artwork Showcase! - Layout thread! (2)
Next older thread

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23

Nicole
Posted on 08-11-12 12:55 AM, in Link | ID: 23276
Administrator
Goddess of the Apocalypse
Level: 199


Posts: 1867/14042
EXP: 111502108
Next: 1634976

Since: 01-03-12
From: Boston, MA

Last post: 252 days
Last view: 251 days
1867 4490 16
Posted by Ijah
Eeyup, updated mine once again, grain based textures are cool?

Oh cool, I really like the background on this one.


Kawa
Posted on 08-11-12 11:38 AM, in Link | ID: 23320
Retired Staff

Not okay
Prophet of Celestia
Level: 93


Posts: 1666/2423
EXP: 7994098
Next: 58712

Since: 01-01-12
From: The Netherlands

Last post: 2022 days
Last view: 337 days
It's nice. Dark and very stylish.

Yes ladies and gentlemen, Rainbow Ijah always posts in style!


Scrydan
Posted on 08-12-12 12:23 AM, in Link | ID: 23415
Normal User
Scryforce - A place that still exists. Neat.
Level: 86


Posts: 222/2020
EXP: 5949310
Next: 192797

Since: 07-18-12
From: USA

Last post: 767 days
Last view: 749 days
Oh yeah, I forgot to mention my new layout awhile back made by Elemi. <3

It is based off the old theme I had of a layout that didn't look too good here but Elemi made it awesome.

Hālian
Posted on 08-27-12 05:32 AM, in (rev. 3 of 08-27-12 05:33 AM by Hālian) Link | ID: 24506
Normal User


Level: 50


Posts: 16/569
EXP: 909418
Next: 37899

Since: 01-04-12
From: Central Florida

Last post: 1812 days
Last view: 1496 days
Maple Post-o-Matic 9.2
Header:

<link rel="stylesheet" type="text/css" href=""http://safirian-empire.co.cc/kafuka.css"><div" class="post">


Signature:

</div>


Why won't My post layout work? >_>

____________________
Layout by Maple.
Hoennese Realm Safir Alliance

Epele
Posted on 08-27-12 10:39 AM, in Link | ID: 24511
Site Administrator
The Sorceress.
Boing~

Level: 235


Posts: 4086/20774
EXP: 200686919
Next: 1238973

Since: 01-01-12
From: UK

Last post: 836 days
Last view: 8 hours
Posted by Kaena
Why won't My post layout work? >_>
It's not your layout code that's the issue, it's your css file that's the issue.
If you put the classes as like ".post", it'll work fine.

Also, might I suggest using ".mainbar39" rather than just "post"?


The world could always use more heroes!

Hālian
Posted on 08-27-12 10:52 AM, in Link | ID: 24514
Normal User


Level: 50


Posts: 17/569
EXP: 909418
Next: 37899

Since: 01-04-12
From: Central Florida

Last post: 1812 days
Last view: 1496 days
Maple Post-o-Matic 9.2
I made those fixes — how's "nothing doing" sound? :(

____________________
Layout by Maple.
Hoennese Realm Safir Alliance

Elemi
Posted on 08-27-12 05:11 PM, in (rev. 2 of 08-27-12 05:23 PM by Elemi) Link | ID: 24532
Normal User

Jejfjsiejrjntnyns8fujrtnjs8f7eibrbtudiwie
Level: 37


Posts: 65/284
EXP: 320672
Next: 17581

Since: 01-05-12

Last post: 1620 days
Last view: 155 days
Most edits to the .mainbarX class require the use of the !important decleration.

Example:

.mainbar39 {
background: red!important;
}

EDIT: Also, your host seems to be blocked on my firewall due to strange requsts.
What hosting are you with at the moment?

Scrydan
Posted on 08-28-12 12:54 AM, in Link | ID: 24573
Normal User
Scryforce - A place that still exists. Neat.
Level: 86


Posts: 407/2020
EXP: 5949310
Next: 192797

Since: 07-18-12
From: USA

Last post: 767 days
Last view: 749 days
Here's a tip for those who want to have their layout on more than one board that uses AB2 without making two copies of it because of class numbering.

Just create a php script to do something like this:
<?php
$uid = intval($_GET['user']);
header("Content-type: text/css");
header("Cache-Control: no-cache");
echo ".topbar".$uid."_1 {
//whatever here
}
.topbar".$uid."_2 {
//whatever here
}
.sidebar".$uid." {
//whatever here
}
.mainbar".$uid." {
//whatever here
}
.textcon".$uid." {
//whatever here
}
";
?>


All you will need is to edit the numbering of textcon in the header and footer.

Then you need to call that layout script with ?user=X where your id is your userid. Then you can reuse your layouts without having to make copies with different class names!

Felt like posting this just in case someone likes the idea.

Elemi
Posted on 08-28-12 01:58 AM, in Link | ID: 24576
Normal User

Jejfjsiejrjntnyns8fujrtnjs8f7eibrbtudiwie
Level: 37


Posts: 67/284
EXP: 320672
Next: 17581

Since: 01-05-12

Last post: 1620 days
Last view: 155 days
Posted by Scrydan
Here's a tip for those who want to have their layout on more than one board that uses AB2 without making two copies of it because of class numbering.

Just create a php script to do something like this:
<?php
$uid = intval($_GET['user']);
header("Content-type: text/css");
header("Cache-Control: no-cache");
echo ".topbar".$uid."_1 {
//whatever here
}
.topbar".$uid."_2 {
//whatever here
}
.sidebar".$uid." {
//whatever here
}
.mainbar".$uid." {
//whatever here
}
.textcon".$uid." {
//whatever here
}
";
?>


All you will need is to edit the numbering of textcon in the header and footer.

Then you need to call that layout script with ?user=X where your id is your userid. Then you can reuse your layouts without having to make copies with different class names!

Felt like posting this just in case someone likes the idea.


I used this method before :P

Trouble was, I only ever used 3 boards, Jul, Nikoboard and Board2, all used different formatting, Only nikoboard used the .mainbarx type classes.

NightKev
Posted on 10-28-12 11:43 AM, in Link | ID: 28459
Normal User

Level: 29


Posts: 71/169
EXP: 143463
Next: 4422

Since: 08-17-12

Last post: 3782 days
Last view: 3640 days
Header:
<link rel="stylesheet" type="text/css" href=""http://nightkev.fraxy.net/nk.css"" /><div class="nkmain"><div class="nkpost">

Footer:
</div></div>

Source for the CSS in my layout (slightly altered from the one used on board2 to work with the different code tags).

Some of the more astute readers may notice a theme throughout my layout/avatars (though I admit, it is very subtle).
Also, I need a way to get rid of that signature separator...


Scrydan
Posted on 10-28-12 03:11 PM, in Link | ID: 28461
Normal User
Scryforce - A place that still exists. Neat.
Level: 86


Posts: 1095/2020
EXP: 5949310
Next: 192797

Since: 07-18-12
From: USA

Last post: 767 days
Last view: 749 days
Posted by NightKev
Also, I need a way to get rid of that signature separator...


You mean like this? ;) Also I like your layout as well.

NightKev
Posted on 10-29-12 05:38 AM, in Link | ID: 28476
Normal User

Level: 29


Posts: 73/169
EXP: 143463
Next: 4422

Since: 08-17-12

Last post: 3782 days
Last view: 3640 days
Awesome! I totally missed that somehow, oh well. ^^;;;


Nicole
Posted on 12-14-12 11:00 PM, in Link | ID: 29397
Administrator
Goddess of the Apocalypse
Level: 199


Posts: 2172/14042
EXP: 111502108
Next: 1634976

Since: 01-03-12
From: Boston, MA

Last post: 252 days
Last view: 251 days
2172 4490 16
It's a Christmas layout! With Fluttershy, because she is cute :-3 (with apologies to Lili~ ♥)

I'm sorry it's bright, but it's only for a limited time anyway :P


Scrydan
Posted on 12-14-12 11:30 PM, in Link | ID: 29406
Normal User
Scryforce - A place that still exists. Neat.
Level: 86


Posts: 1366/2020
EXP: 5949310
Next: 192797

Since: 07-18-12
From: USA

Last post: 767 days
Last view: 749 days
As mentioned on the IRC, I like your layout and how it has Fluttershy in it, @Nicole. :-3

Lunaria
Posted on 01-19-13 09:55 AM, in Link | ID: 30143
Normal User
Professional Lurker
Level: 36


Posts: 207/262
EXP: 284180
Next: 23930

Since: 01-03-12

Last post: 2006 days
Last view: 2005 days
I'm having issues getting my post layout to function on any software that is not Jul. :P
I could use some help in the error searching department if someone have the time:
<style type="text/css">

.Lunapoke1{color:#20A0E0;background: url('https://dl.dropbox.com/u/9395043/Layouts/poke11w.PNG') no-repeat top left;min-height:152;}

.Lunapoke2{color:#20A0E0;background: url('https://dl.dropbox.com/u/9395043/Layouts/poke2w.PNG') repeat-x top left;min-height:152;}

.Lunapoke3{color:#20A0E0;background: url('https://dl.dropbox.com/u/9395043/Layouts/poke33w.PNG') no-repeat top right;min-height:152;}

.Lunapoke4{border-style:solid;border:33px;-webkit-border-image:url('https://dl.dropbox.com/u/9395043/Layouts/poke4w2.PNG') 33 repeat;-moz-border-image:url('https://dl.dropbox.com/u/9395043/Layouts/poke4w2.PNG')33 ;min-height:30px;}

</style><div class="Lunapoke2"><div class="Lunapoke1"><div class="Lunapoke3"></div></div></div><div class="Lunapoke4"><div style="color:white;font-size: 10pt; font-family: 'Tahoma', Tahoma; text-shadow:2px 2px 2px #404878, 1px 1px 1px #404878,1px 1px 1px #404878;"><font size="+0,5">

-POST GOES HERE -


<b>2013 is here! :<</b>
</div></div></font>


The issue, in case you're wondering, is that either the upper section does not show up, or that the lower section cover it up. Hard to say from my perspective.

____________________
Broken layout got nuked. :v

Arisotura
Posted on 02-09-13 06:06 PM, in Link | ID: 30592
Developer
pancakes
Level: 83


Posts: 356/1868
EXP: 5409061
Next: 23160

Since: 01-05-12
From: France

Last post: 677 days
Last view: 216 days
The 33's in there should be '33px'. It seems that specifying values without numbers isn't valid in HTML5 mode (what this board uses), but works in quirks mode (what Jul uses).

Oh also, make sure to not have newlines in your style, or the board will shit <br> tags over it and break it.

____________________
Kuribo64 - melonDS

want some revolution in your coffee?

Trelior
Posted on 02-19-13 05:05 AM, in Link | ID: 30897
Normal User

Level: 127


Posts: 2359/4986
EXP: 23595780
Next: 130786

Since: 01-02-12

Last post: 1256 days
Last view: 1256 days
What a horrible night to have a curse.

Yep, made a new layout that makes use of an NES font clone.

The quick brown fox jumped over the lazy dog.

1234567890-=
!@#$%^&*()_+
[];',./{}:"<>?

bold

italic

underline

Link to Google
Link to ensure a new link

Posted by Dr Wily
Posted by Dr Wily
My plan for world domination has faild!
I'm gonna break you, Mega Man!


S
T
R
E
E
E
E
E
E
E
E
E
E
E
E
E
E
E
E
E
E
E
E
E
E
E
E
E
E
E
E
E
E
E
E
E
E
E
E
E
T
C
H

GreyMaria
Posted on 02-19-13 06:13 AM, in Link | ID: 30899
Normal User
~</3
Outta here.
Level: 99


Posts: 2350/2758
EXP: 9706634
Next: 293366

Since: 01-03-12

Last post: 3935 days
Last view: 3724 days
I'm not seeing it, Trel.

Trelior
Posted on 02-19-13 06:21 AM, in Link | ID: 30900
Normal User

Level: 127


Posts: 2360/4986
EXP: 23595780
Next: 130786

Since: 01-02-12

Last post: 1256 days
Last view: 1256 days
I noticed that it takes a while to load sometimes... Maybe I goofed when writing the css.

Here it is.

Here's the code:
Header:
<link rel="stylesheet" type="text/css" href=""https://dl.dropbox.com/u/13005543/Layouts/NES/NES.css"/><div" class="trel"><center><table><tr><td><img src=""http://i39.tinypic.com/29qjlev.png"></td><br/><br/><br/><td>


Footer:
</td><td><img src=""http://i39.tinypic.com/29qjlev.png"></td></tr></table><br/><br/><br/></div>

Nicole
Posted on 02-19-13 05:49 PM, in Link | ID: 30916
Administrator
Goddess of the Apocalypse
Level: 199


Posts: 2395/14042
EXP: 111502108
Next: 1634976

Since: 01-03-12
From: Boston, MA

Last post: 252 days
Last view: 251 days
2395 4490 16
Seems to work better in Safari than Firefox, for some reason- IIRC Firefox is really picky about fonts due to paranoia or something.

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23


Next older thread
Main - Creativity and Artwork Showcase! - Layout thread! (2)


Acmlmboard v2.5.5 (10/04/2020)
© 2005-2024 Acmlm, Emuz, et al.

Page rendered in 0.111 seconds. (907KB of memory used)
MySQL - queries: 215, rows: 623/658, time: 0.085 seconds.