[x]
News
News
[x]  

Notices



More Customization News

GAIA 2008 online

*imrik:iconimrik: reports, October 2
With 20 well known Skinners and Designers we are proud to announce the second release of your community project GAIA. Welcome to GAIA 2008!

Signatures Multibattle - start

~ToTo4ever:iconToTo4ever: reports, September 30
Signatures Multibattle --- go !

Deskmod Vol 4

~pepesk8:iconpepesk8: reports, September 30
Icons,Wallpapers,Instant Messanger ,Sreenshots Mac ,Sreenshots Windows,Winamp Skinners,Iconpackager,iPod Touch,Sidebar Gadgets

REEL Player Contest

^mrrste:iconmrrste: reports, September 29
DA FILM BIRTHDAY REEL PLAYER CONTEST

What Legends Are Made Of XII

`zacthetoad:iconzacthetoad: reports, September 29
What Legends Are Made Of is an intermittent newsletter designed to inform deviants, particularly emoticonists, of updates and relevant news relating to the Emoticon Legend and Emoticon Gallery.

Halloween & Autumn Customization Features

*FantasyStockAvatars:iconFantasyStockAvatars: reports, September 26
It's that time of year to celebrate Halloween & Autumn with free avatars, emoticons & stamps along with a few seasonal contests!

Skinmasters #13 Improvpastence

^mrrste:iconmrrste: reports, September 25
SkinsMaster Interview with HitechLoon by Mrrste

101 DA ID's Feature

*No-Reason-At-All:iconNo-Reason-At-All: reports, September 20
This is a feature of Deviant Art ID's, plain and simple.
So take a look at who is on DA

More Plz

=mizdestiny:iconmizdestiny: reports, September 15
We've seen them, laughed at them, hated them and used them. Here's a collection of cute, funny and just plain odd images for anyone who likes to use different emotes

Customization News This Week

So i herd u liek emotes?? Volume 1

=Synfull:iconSynfull: reports, 7h 7m ago
The first in a possible new series of articles giving exposure to emoticons, emote tutorials and emote projects :)

Official cPro - MMD Skin Released

=Skin-Consortium:iconSkin-Consortium: reports, 1d 21h ago
cPro - MMD has been enhanced in conjunction with the Winamp cPro Plugin Version 1.04, which adds better colour theme support and brings cPro features to one of the best Winamp Skins of all time - MMD3

Interview with patrickgs, Creator of VistaOSX'09

~iTimez:iconiTimez: reports, October 9
I sat down VIA MSN with patrickgs to talk about VistaOSX'09.

CreateGFX Fav

~creategfx:iconcreategfx: reports, October 7
Promotion

Signatures Multibattle - Deposits

~ToTo4ever:iconToTo4ever: reports, 1d 22h ago
Signatures Multibattle - Deposits

Customization


Ever wanted a 2 columned journal?

*BeyondTheHorizon:iconBeyondTheHorizon: reports, January 7, 2007
I have been playing around with the thought of having 2 columns in my Journal. So I digged into it, and finally I was successful. I must admit I had a headache doing this, because it involves a lot of div's, but if you have a little patience you'll make it work too.

Here goes:

What you need is a large container. A box to put your stuff (columns) into. This container has to be filling up the entire width of your Journal. This is the CSS:


.container {
position: relative !important;
vertical-align: top !important;
height: 250px !important;
background:#eff1f1!important;
}



You can ofcourse adjust the parameters to suit your needs. Especially the height is important. Play around untill you get it right.

Now you have a 'box' to add your columns into.

The left column consists of the following CSS:


.left-element {
position: absolute !important;
left: 0 !important;
width: 50% !important;
height: 100% !important;
background:#eff1f1!important;
padding:20px !important;
vertical-align: top !important;
}



Again you can naturally play around with width and color, but be careful about changing position and alignment.

Now...let's add the right column;


.right-element {
position: absolute !important;
right: 0 !important;
width: 50% !important;
height: 100% !important;
background:#eff1f1!important;
padding:0px !important;
vertical-align: top !important;
}



Same terms apply here.


All this confusing code goes into your CSS field when you edit your Journal.


Now for the fun part: implement it in your Journal. Copy/paste the below into your Journal (NOT the CSS part, but your JOURNAL), and change whatever necessary - links, contents, implement pics...you name it. Go and play my friend :D



<div class="container">
<div class="left-element" align="center">

<div class="h2">MEMBER OF</div>

*deviantFOOD
*deviantAIR
=onewordphoto
*macrophoto
*OneClickPhoto
</div><div class="right-element" align="center">

<div class="h2">DEVIATE</div>

~deviantoftheyear
~random deviation
~random deviant</div>
</div>

</div>



Here is my own Journal done this way: [link]
I only used this coding in my links-section, but I hope you'll make more of it.


Oh...btw; the h2 class you can naturally customise yourself. CSS is:


.h2{
font-size: 12px !important;
font-weight: bold !important;
color: #374341!important;
}



I hope you like it =)

Devious Comments

love 0 0 joy 1 1 wow 0 0 mad 0 0 sad 1 1 fear 0 0 neutral 0 0

¢mindfuckx:iconmindfuckx: Jan 9, 2007, 5:15:07 AM
why not using floats ?
that would make it so much easier :)

--
Creative Staff
deviantART, Inc.
~WinampSkinners:iconWinampSkinners: Jan 9, 2007, 8:09:43 AM Mood: Thanks
I don't know too much of css, but I've just updated the journal of the community with a two column section. Thanks! :)

--
:bow: Proudly Winamp Skinners!
*BeyondTheHorizon:iconBeyondTheHorizon: Jan 9, 2007, 10:13:24 PM
I'm happy you could use the code! =)
*BeyondTheHorizon:iconBeyondTheHorizon: Jan 9, 2007, 10:14:11 PM
I am not familiar with floats, but I will look into that - thanks :D
`Lilyas:iconLilyas: Jan 11, 2007, 2:16:46 PM
This idea is not bad. I think it works. But I also think it can be easier with the "float" property. Floating elements are elements whose rendering boxes are shifted to the left or right side of the current line.

It looks like this:

.columnleft {
float:left;
width:50%;
height:300px;
}

for the Journal:

<div class="columnleft">Content for left column</div>Content for right column

That's it.

--
:eyes: You laugh about me because I am different.
:kiss: I laugh about you because you are no different from the rest.
*BeyondTheHorizon:iconBeyondTheHorizon: Jan 12, 2007, 1:34:31 AM
Okay! I will check this out - thanks =)
`Lilyas:iconLilyas: Jan 13, 2007, 6:23:53 AM
Welcome!

--
:eyes: You laugh about me because I am different.
:kiss: I laugh about you because you are no different from the rest.
~toxicity-lady:icontoxicity-lady: Jan 14, 2007, 11:16:23 AM Mood: Sadness
I tried but it failed. I do not understand how to use it!!

--
why wouldn't I be stupid?
I AM stupid

:comic:
*BeyondTheHorizon:iconBeyondTheHorizon: Jan 16, 2007, 12:53:27 PM
Note me your problems and errors, and I will help you =)