[x]

deviantART

 
[x]  

Notices



More Customization News

Writing Efficient CSS

`BoffinbraiN:iconBoffinbraiN: reports, 2d 10h ago
This document from Mozilla Development Center outlines rules for optimizing CSS files for use in the Mozilla UI.

With an understanding of the underlying system, you can rewrite journal CSS and Stylish styles to make them as fast as possible, while still looking the same.

Factory of signatures !

~Mis-kin:iconMis-kin: reports, July 12
The best of cz / sk sigmakers ...

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

~Humanization:iconHumanization: reports, July 11
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, July 10
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 ...

Customization News This Week

Writing Efficient CSS

`BoffinbraiN:iconBoffinbraiN: reports, 2d 10h ago
This document from Mozilla Development Center outlines rules for optimizing CSS files for use in the Mozilla UI.

With an understanding of the underlying system, you can rewrite journal CSS and Stylish styles to make them as fast as possible, while still looking the same.

The New Stock Market Part 2

~Theshelfs:iconTheshelfs: reports, 1d 7h ago
thank you for viewing x

TheGirlLovesCats's Color CONTEST ****CLOSED!!****

~TheGirlLOvesCats:iconTheGirlLOvesCats: reports, July 17
Color CONTEST CLOSED!!!!!!!!!!!!!!!!!!!!!!!

My stamps

~nicklayers:iconnicklayers: reports, July 16
Stamps

Customization


Make your CSS Journal #4

=dot-Silver:icondot-Silver: reports, March 14, 2007
Welcome to part 4 of our series on making your CSS Journal stand out from the rest. This part will be a carry on from the last one, so it's about usage of images on this.

First bit, if you remember in the last one, we made a header image, so in this, how do we move our subject further up to be on top of this image? (If you've been following the series and the exact code.)

You first need to change the padding on our journalbox to move the stuff up, so our subject in on our header. Then we need to add a margin (remember those?) to our journaltop so that we can move our journaltext down further so it's not on the header plus making the background transparent. This may take a bit of fiddling to get at first, but here's the CSS code I have for both of them.

.journalbox{
background: #FCFCFC url('[link]) repeat-x;
border: 2px solid #333333;
padding: 10px 0 0 0;
}
.journaltop{
background: transparent;
font-family: tahoma, arial, verdana, sans-serif;
font-size: 9px;
color: #CCCCCC;
margin-bottom: 80px;
}


Content Box Header Image
Using an image for a heading inside the content.

Here is the image that I shall be using for this [link] - not the best image to use but this is only an example right?

.subimage{
background: url('imageurl') no-repeat;
width: 400px;
height: 20px;
}

<div class="subimage">Sub Heading</div>


Simple?

Placing Images
This bit is for placing images, or anything at all actually, into a certain area. For example, looking a this journal you see a thumbnail of my free CSS Journal to download. This was placed there using some simple CSS.

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


You place your div tag anywhere (header, body or footer).

Oh yes, it's really that simple. But for first tries, it may be annoying. I'll wait for you to find out. When doing these, you always want to use position: absolute. This means that you yourself are manually choosing where to place this div using the top or bottom, and the left or right. As you can see, I've used the top and right. We can continue adding this simply.

The top defines how far from the top the div should be placed, and the right does the same but with the right side inside.

.stamps{
position: absolute;
bottom: 10px;
left: 10px;
width: 100%;
text-align: center;
margin-bottom: 5px;
}


It's exactly the same here. We're placing it at the bottom of the journal.

Well, that's all for now, it's a small one, but can be helpful. And now, for the usual bit, some CSS Journals.

=dot-Silver - Now I don't really like to suggest myself for things, but this journal was requested to be made, and shows a journal with very basic CSS, also uses extra divs for the sub-headings and also the surrounding text boxes. Hint: transparent is also a background type.

*Lilyas - A lovely female who has the hobby of creating some interesting CSS designs and allows them to be downloaded for free (with copyright I believe)

*AnnaKirsten - Also having the snacks for creating free to use journals, but her current journal is a nice example of the scrollable divs.

Well who said simple can't be nice? Which is also why =f1lly is being put here.

Watch out for some free css journals coming from myself soon, and also the next part in the series which will be released tomorrow, though I shall tell you know, IE users, don't be impressed, since the stuff in it don't work in IE (Apart from one or two things).

Also, I'm available for any CSS Journal Commissions... for free! You have the design, I do the coding (Sounds fair)

Devious Comments

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

`misskittyoooo:iconmisskittyoooo: Mar 14, 2007, 6:49:03 PM
These are actually some really great tips. Something most people wouldnt think to share because they are so simple and small tips but it's amazing how many people cant figure out these tiny details and they really make all the difference with journals.

--
Daqueran - webcomic | Pre-order chapter 2 of Daqueran
=dot-Silver:icondot-Silver: Mar 15, 2007, 3:38:34 AM
That is very true. But CSS Journals is something that isn't the easiest thing to do. I see a lot of people using downloaded CSS Journals and I would just love to see them make their own, I've seen people change their downloaded journals thanks to these and the ones by grayda.
~HEART-Club:iconHEART-Club: Mar 16, 2007, 4:06:10 AM
Can we use something like layers or any such thing to hide things unless a link is clicked.
I am sure you will havea solution for that too :D
You tutorials are of great help for me in learning CSS for the first time.

--
:heart::heart:HEART CLUB:heart::heart:
=dot-Silver:icondot-Silver: Mar 16, 2007, 6:57:07 AM
ermm... Not sure about "When a link is clicked" - I'll find out for you.
~HEART-Club:iconHEART-Club: Mar 16, 2007, 7:03:39 AM
ThankQ
Can can u tell me if there is anyway I can use Dreamweaver then somehow copy the codes here.
If its possible then u can make a tutorial for that kind of stuff as it will help many starters like me.

--
:heart::heart:HEART CLUB:heart::heart:
=dot-Silver:icondot-Silver: Mar 16, 2007, 7:33:59 AM
You can actually use dreamweaver to help you create your journal. Sure thing, I will do that for #6.
~HEART-Club:iconHEART-Club: Mar 16, 2007, 11:14:14 AM
It will be great to have a tutorial regaring use of dreamweaver on DA journal
I will be waiting for #6
Once again thanks a million for your concern and help :hug:

--
:heart::heart:HEART CLUB:heart::heart:
 

Site Map