[x]

deviantART

 
[x]  

Notices



More Customization News

Factory of signatures !

~Mis-kin:iconMis-kin: reports, 21h 2m ago
The best of cz / sk sigmakers ...

Smile - 微笑 - Sourire - Lächeln - Son

~Humanization:iconHumanization: reports, 1d 14h ago
Well, Summer is upon us and it calls for celebration! As difficult as life may be sometimes and as much troubles as there are in the world, we need to remember to smile and stop and remember to take a look at those little things in life we might miss but so often bring smiles to our faces =D

Chance to Shine - Volume VI

`LeoLeonardo:iconLeoLeonardo: reports, 2d 22h ago
Newest issue of the emoticon newsletter, Chance to Shine!

10 Awesome Free Avatar Creators

=FreeAvatarProject:iconFreeAvatarProject: reports, July 8
Here are 10 free avatar artists that you may not know. Find free avatars to use at dA and meet some talented iconists!

Unexpected Greatness!

^Grandchild:iconGrandchild: reports, July 7
Three of the currently most active members of the AVS visualization community released big packs during the last week. And a classic reappeared on the scene.
Time for a feature I think!

So i herd u liek emotes?? - Volume 39

^Synfull:iconSynfull: reports, July 4
39th volume in a weekly series focused on promoting emotes and emoticonists from the dA community

So i herd u liek emotes?? - Volume 38

^Synfull:iconSynfull: reports, June 28
38th volume in a weekly series focused on promoting emotes and emoticonists from the dA community

Chance to Shine - Volume V

`LeoLeonardo:iconLeoLeonardo: reports, June 23
Issue number 5 of the Emoticon newsletter: Chance to Shine

This is Dead !

~Mis-kin:iconMis-kin: reports, June 20
About Dead-Man23 ...

So i herd u liek emotes?? - Volume 37

^Synfull:iconSynfull: reports, June 21
37th volume in a weekly series focused on promoting emotes and emoticonists from the dA community

Customization News This Week

Smile - 微笑 - Sourire - Lächeln - Son

~Humanization:iconHumanization: reports, 1d 14h ago
Well, Summer is upon us and it calls for celebration! As difficult as life may be sometimes and as much troubles as there are in the world, we need to remember to smile and stop and remember to take a look at those little things in life we might miss but so often bring smiles to our faces =D

Chance to Shine - Volume VI

`LeoLeonardo:iconLeoLeonardo: reports, 2d 22h ago
Newest issue of the emoticon newsletter, Chance to Shine!

10 Awesome Free Avatar Creators

=FreeAvatarProject:iconFreeAvatarProject: reports, July 8
Here are 10 free avatar artists that you may not know. Find free avatars to use at dA and meet some talented iconists!

Unexpected Greatness!

^Grandchild:iconGrandchild: reports, July 7
Three of the currently most active members of the AVS visualization community released big packs during the last week. And a classic reappeared on the scene.
Time for a feature I think!

Factory of signatures !

~Mis-kin:iconMis-kin: reports, 21h 2m ago
The best of cz / sk sigmakers ...

All is Well With Emotes - Volume 1?

~Alliswellwithme:iconAlliswellwithme: reports, July 9
The First (if any more come anyways) of All is well with Emotes News thingies XD

Helveticons

=eos8:iconeos8: reports, 2d 13h ago
Helviticons by Maximilian Larsson

Free Dragon Icons!

=FallenZephyr:iconFallenZephyr: reports, July 7
For anyone who needs an icon!

A Question, tell the truth now.

~trinitymaster3:icontrinitymaster3: reports, July 7
A question about which characters of mine that people like the most. I have a list here.

Customization


Make your CSS Journal #5

=dot-Silver:icondot-Silver: reports, March 16, 2007
So we're coming quite a way for creating journals and customization. But still, there are more you can do, possibilities are almost endless. In this part, we will be doing some extra bits you can add into your journal. But unfortunately, half of these do not work in IE.

About this journal
The "About this journal" is to have a section on your journal that says a quick words about your journal, this includes the design, what it's about, etc. When on mouse hover, another big expands saying about it. Useful for a vary of things. Here is how you do that.

.expand sup{
display:none;
}
.expand:hover sup{
display:block;
width: 200px;
background: #FCFCFC;
border: 1px solid #333333;
padding: 5px;
text-align: justify;
}

<div class="expand">About this Journal
<sup>Text goes between this these sup tags.</sup></div>


It's simple as that, so the CSS code says to hide the text in the sup tags, and when the div (About this journal) has the mouse hovering it, show the text in the sup tag.

Edit Journal
Its quite annoying when you notice a mistake in your journal, and you have to click on Update Journals then Edit. Make this a lot easier with this little nifty CSS style.

.editjournal{
position: absolute;
top: 10px;
right: 10px;
}

<div class="editjournal"><a href="http://urlhere">Edit Journal</a></div>


Just make sure you first post the journal then use the edit so you have the journal number.

Drop Down Menu
This one can be a bit confusing, but here we go.

.expandmenu ul li{
display: none;
}
.expandmenu:hover ul li{
display: block;
width: 200px;
}
ul{
background: #333333;
color: #FCFCFC;
padding: 2px;
margin: 0;
height: 15px;
}
ul .a{
background: #2e2e2e;
height: 15px;
}
.expandmore li ul{
display: none;
}
.expandmore:hover li ul{
display: block;
margin-left: 200px;
width: 200px;
padding: 2px;
margin-top: -15px;
height: 15px;
}


Ok, explanation first.

So what we do here, we got expand menu li ul. We are using a list and unordered list tags to show out menu. The expandmenu is our div class that holds it all in. We hide the list, just like we had hidden the sup tag in the about journal.

When they hover over the menu, we then show the lists with a set width. Then we set background colour, padding, etc. anything you want. on the listings.

If you see on mine, I have used a different row colour, I achieved this by making a div inside the ul for the second row. So it knows we actually mean this one, we say that the div with class name a inside a ul tag, do this.

As you can see on my example, I've gone a bit further and introduced on how to add another menu onto this menu which will show up on the right side of this menu. We set this to display: none; - and when the user hovers it, we show it off, now the margin left is very important, so we get it to the right of the menu. And also we want it faily equal to the menu we're on right? So we want to use margin-top and using a - number in order to move it up.

Pretty long and kind of confusing stuff at first. But just wait till you see the code.

<div class="expandmenu">Menu
<li><ul>Send me a note</ul><ul><div class="a"><div class="expandmore">More<li><ul>Watch me</ul></li></div></div></ul><ul>Done</ul>
</li>
</div>


Yea... confusing right? Here is it broken down into lines. Because the journals do automatic line breaks, it pretty much all has to be on one line.

<div class="expandmenu">Menu
<li>
<ul>Send me a note</ul>
<ul><div class="a">
<div class="expandmore">More
<li>
<ul>Watch me</ul>
</li></div> //End div of expandmore
</div> //End div of a
</ul>
<ul>Done</ul>
</li>
</div< // End div of expandmenu


Hope that bit clears it up a bit more.

Get rid of the Journal Entry: text
This isn't actually getting rid of the time and date, but the actual Journal Entry: text. Do you seriously always want to have that bit of text on your journal? Because I don't.

So how do we get rid of that? Simple...

Add

font-size: 0px;

in your .journaltop css code.

Use

.journaltop span{
font-size: 8px;
}


The date and time is surrounded in a span tag, but the Journal Entry: text isn't. by Using font-size: 0px; means there can't be any text there. So we hide the journal entry, and set the span tag (date and time) to 8px.

Alternatively, you don't even have to put in the span one and just not have any date and time showing.

That's it for this part. The next one, #6 will show you how you can create your journal in Dreamweaver, so you can make yours absolutely perfect even before you start it on deviantart. It's very useful, very helpful to design your journal first.

Features
So I thought that today, I would concentrate more on the colours of the journals instead of the actual journal look.

=ipholio - This is just one that would have had to be put in sooner or later. The simplicity of it is great, while it still looks so attractive.

~Zionxxx - Yea, it's a not a CSS one, but the design and colours are ones that I really like in this.

~jaj43123 - This was another I was impressed with, I love the look, and the colours are so organic. Just the menu at the top that turns it down ;)

Devious Comments

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

=neko-mangaka:iconneko-mangaka: Mar 16, 2007, 11:21:37 AM
These are great, and really helpful. :w00t:

--
ASCII stupid question, get a stupid ANSI.
/bb|[^b]{2}/
=Rickbw1:iconRickbw1: Mar 16, 2007, 2:15:53 PM
Great!!! i have enjoyed looking thru these. One suggestion....How about some links to the past articles posted?

--
The cure for boredom is curiousity. There is no cure for curiosity.
=dot-Silver:icondot-Silver: Mar 16, 2007, 3:47:37 PM
All articles can also be found on my journals... But sure thing, I will post all links to the past articles of this series in my next one.
=hi-hello-goodbye:iconhi-hello-goodbye: Mar 17, 2007, 3:28:24 PM
awesome!

--
g a l l e r y :pointr: [link]
e t s y :pointr: [link]
=viamallorca:iconviamallorca: Mar 17, 2007, 4:14:42 PM
Reall great !!!

Via

--
Sweet Helen, make me immortal with a kiss...
~naturgewalt:iconnaturgewalt: Mar 17, 2007, 4:26:52 PM
+fav have to try the 'About this journal'-function :)

--
:ahoy:

depthcore | devcorp | humblevoice
~naturgewalt:iconnaturgewalt: Mar 17, 2007, 4:33:57 PM
oh noes ..

it messes up my boxes =/

--
:ahoy:

depthcore | devcorp | humblevoice
~dr-druids:icondr-druids: Mar 18, 2007, 6:19:17 AM Mood: Joy
very handy, just awaiting paypal to transfer funds from my bank and I'll be subscribed. This is just what I would be looking for. thanks.

--
Hold a hard drive to your ear -- listen to the C:
~terf:iconterf: Mar 18, 2007, 8:39:31 AM
very good tips here. I will be applying them to other things as well.

--
Black Magic! That blows your mind away!
Founder of TRFWRK!
:new:AND CONGO-KONG!
 

Site Map