deviant ART


Shoutbox

~Johndead:iconJohndead:
Cheesecurds are delicious!
Wed May 14, 2008, 10:40 PM
~CainKinris:iconCainKinris:
Awesome stuff Yannick, as always! =D
Wed May 14, 2008, 9:15 PM
~rhiver:iconrhiver:
norke is awesome!
Wed May 14, 2008, 6:16 PM
=azikiel:iconazikiel:
thank you :D
Wed May 14, 2008, 6:27 AM
=Norke:iconNorke:
:giggle:
Wed May 14, 2008, 4:38 AM
=Helen-Baq:iconHelen-Baq:
ack! failz! :omfg:
Tue May 13, 2008, 2:58 PM
=Helen-Baq:iconHelen-Baq:
:buttstroke:
Tue May 13, 2008, 2:58 PM
=Yetska:iconYetska:
:hug:
Thu May 8, 2008, 7:05 AM
=Norke:iconNorke:
zomg :fear:
Tue Apr 8, 2008, 8:38 AM
~Yusura:iconYusura:
:strip:
Fri Apr 4, 2008, 2:38 AM
*AeraCrescent:iconAeraCrescent:
See you Monday!
Thu Apr 3, 2008, 5:37 PM
=Norke:iconNorke:
All that stripping here.... :fear: :sprint:
Thu Apr 3, 2008, 4:56 PM
=Yetska:iconYetska:
:strip:
Thu Apr 3, 2008, 4:55 PM
*FeathersOfAnAngel:iconFeathersOfAnAngel:
follows spacerogue's lead :strip:
Thu Apr 3, 2008, 12:50 AM
=spacerogue:iconspacerogue:
:strip:
Mon Mar 17, 2008, 1:09 AM
~slimeyy:iconslimeyy:
:hug:
Thu Mar 13, 2008, 2:03 AM
*akaga:iconakaga:
:toocool: :boogie:
Wed Mar 5, 2008, 4:05 PM
=Norke:iconNorke:
NELE :melt:
Thu Feb 28, 2008, 12:10 PM
=Yetska:iconYetska:
:love: YAWNNICK!
Tue Feb 26, 2008, 1:34 PM
=ZeroniX-Designs:iconZeroniX-Designs:
Hi ho diggidy bro :D
Sun Feb 24, 2008, 3:45 PM

How to build a new custom header for Sleek.

Journal Entry: Tue May 13, 2008, 9:26 AM






Apr
24
How to build a new custom header for Sleek.

Mini Stylish Tutorial

I really like the new dA available for testers. Allthough they stay with the grayish greens too much (I would have liked it a bit better with slightly lighter reading backgrounds, but that's something we can fix later on if needed).

Today I needed a break from painting and decided to have a bit fun with the new sleek and the designstables stable you can see in my journal and my site. Ofcourse, this is only for those who are subscribers and/or betatesters. You'll need to turn on the supersecretv6mode before you can see any changes. If you're not betatester or subscriber, you can still do this, but you won't be able to see any changes untill v6 is released.

Step 1: Open up the header

This is fun stuff. Open up this image in Photoshop or whatever software you use. You can change the width of the image if you want to, as long as you don't change the height. Make sure the whole image is filled with this background. It's ok to use my images I upload here.

New deviantART header

Step 2: Design a new header

Do whatever you want to do with it. Keep in mind that there are still a navigation next to it, so don't go completely nuts on this. Best and easiest way is to make a gradient or whatever. Make something nice and easy like I did below.

New deviantART header

Step 3: Download Stylish

If you allready have Stylish, you can skip this step obviously. Anyhow, for those that doesn't have it: Find Stylish here.

Step 4: Create a new style

Click on the Stylish icon in the status bar (lower right) and click 'Manage Styles'. Click 'Write' and give the style a name. I named mine: New dA header. (Gosh, I'm original).

Now we'll need to fill in some code. dA keeps on making a [link] from the namespace url. So, remove the space in the url.
Stylish Code
@namespace url(http ://www.w3.org/1999/xhtml);

@-moz-document domain("deviantart.com") {



}

Step 5: The top-left issue

To keep a long story short, we'll update the top bar first. You don't need to make a new image for it, we can use our header image for that. What I added is in red now. It's easy to update.
Stylish Code
@namespace url(http ://www.w3.org/1999/xhtml);

@-moz-document domain("deviantart.com") {

#topLeft-55 {
   width: 189px !important;
   background:url("link/to/your/new-da-header.jpg") no-repeat top left !important;
}
#top-55 #menuHover {
   margin-left: 163px !important;
}

}

Step 6: Changing our header

No much words for this, just see what I've changed.
Stylish Code
@namespace url(http ://www.w3.org/1999/xhtml);

@-moz-document domain("deviantart.com") {

#topLeft-55 {
   width: 189px !important;
   background:url("link/to/your/new-da-header.jpg") no-repeat top left !important;
}
#top-55 #menuHover {
   margin-left: 163px !important;
}

#midSection #logoArea {
background: url("link/to/your/new-da-header.jpg") no-repeat 0px -25px !important;
width: 429px !important;
z-index: 0 !important;
outline: 0 !important;
}

}

Step 7: Design the hover state

This state is something you will only see when you hover the image to click it. What you need to do is add 73px to the height. That is the size of the header without the bar above it. You can do that by going to Image - Canvas size. Then hit the 'relative' checkbox and switch to Pixels. There fill in the 73 for height and before you hit the enter button, click on the arrow that points upwards. I just copied my header and dragged it down. Then I dragged that layer beneath the normal state layer and changed the image like this:

New deviantART header
Again, I don't mind if you use this image for your header.

Step 8: Coding the hoverstate

Stylish Code
@namespace url(http ://www.w3.org/1999/xhtml);

@-moz-document domain("deviantart.com") {

#topLeft-55 {
   width: 189px !important;
   background:url("link/to/your/new-da-header.jpg") no-repeat top left !important;
}
#top-55 #menuHover {
   margin-left: 163px !important;
}
#midSection #logoArea {
background: url("link/to/your/new-da-header.jpg") no-repeat 0px -25px !important;
width: 429px !important;
z-index: 0 !important;
outline: 0 !important;
}

#midSection #logoArea:hover {
background: url("link/to/your/new-da-header.jpg") no-repeat 0px -98px !important;
}

}

Step 9: Finish the code

When I checked around to see if the code is working properly, I discovered that the statusbar in the chatrooms is updated as well. But in the code for dAmn, the code for that image is disabled, so we won't see it. Allthough, the margins and widths we gave to the topLeft area is still used by it. Therefor we need to fix things a bit. We can do that by adding this to our code:
Stylish Code
@namespace url(http ://www.w3.org/1999/xhtml);

@-moz-document domain("deviantart.com") {

#topLeft-55 {
   width: 189px !important;
   background:url("link/to/your/new-da-header.jpg") no-repeat top left !important;
}
#top-55 #menuHover {
   margin-left: 163px !important;
}
#midSection #logoArea {
background: url("link/to/your/new-da-header.jpg") no-repeat 0px -25px !important;
width: 429px !important;
z-index: 0 !important;
outline: 0 !important;
}
#midSection #logoArea:hover {
background: url("link/to/your/new-da-header.jpg") no-repeat 0px -98px !important;
}

.chatroom #topLeft-55 {
width: 23px !important;
}
.chatroom #top-55 #menuHover {
margin-left: 10px !important;
}

}

There, that should fix things again. I hope you liked this tutorial a bit. I liked it, and I'm using it at the moment. I don't mind if you use my images at all. Now go ahead and test it. :excited:

Step 10: Let me know what you think

If there are things I haven't thought about or maybe bugs, let me know. If you design your own header, make a screenshot and post it. It would be nice to see what you made. It would also be nice if you credit me with a link back.



****************

Tutorials and Walkthroughs

I added all my Tutorials and Walkthroughs in my sidebar. Because I still get notes asking me how I do things. I intend to make more when work stops eating all my time here. I hope you like them.

Ofcourse you can always just fav the collections as well: Tutorials collection and Walkthroughs collection.


What is the ANONYMOUS FLOWER PROJECT?

For webdesign school we had to design a goosebump project. My idea was to create a site that allowed people to express their appreciation or love to another person or whatever. I thought about giving something to another person, and what's better then send a flower right? Even though it seems to be a clichè (all clichè's started as something brilliant in the first place), the idea of having a given flower can be so strong. I also wanted to bring nature back into the webdesign world.

Anyhow, wouldn't you love to recieve a flower without knowing from who and what for? It surely would give me goosebumps. So there was the idea of starting Anonymousflower.com.

On a sidenote.

You can follow the process here: Anonymousflower.com and I hope as soon as it works, that you'll all be sending flowers right? :D


Anonymous flower - Nerd Update 2

Journal Entry: Tue Apr 29, 2008, 4:21 AM



:heart::iconyetska:

Friends
:icon-lildragon-: :iconadivara: :iconaegipan: :iconblutzmax: :iconcoffinfairy: :iconcosmosue: :iconcrystaleyes909: :iconcutteroz: :iconetuix: :iconfleur-de-soleil: :iconmindfuckx: :iconthenass: :iconspacerogue:




Apr
24
Anonymous Flower


See the live version here.

Update 2

For the not nerds

Still no preloader. I'm working on that at the moment. I've added a second flower. There will be 9 flowers in total.

For the real nerds

Previous question was solved by ¢mindfuckx, thx thx :D

Here's a new one. :eyes:
Actionscript
// Read what the number of reasons are
for(i=0; i<_parent.Flowerdata.number; i++){

    // Put the right data in the right box.
    movieclipname.reason = _root.Flowerdata["flower"+i+"reason"];

}

stop();

Ok, so that works. There is a dynamic box that shows the reason like it should be displayed. But I've got 5 flowers, that means I got 5 reasons of sending. So is there a way to display all the reasons beneath eachother?

I appreciate every bit of help.

:peace:
Yannick

<I-- end update -->

What about it?

For webdesign school we had to design a goosebump project. My idea was to create a site that allowed people to express their appreciation or love to another person or whatever. I thought about giving something to another person, and what's better then send a flower right? Even though it seems to be a clichè (all clichè's started as something brilliant in the first place), the idea of having a given flower can be so strong. I also wanted to bring nature back into the webdesign world.

Anyhow, wouldn't you love to recieve a flower without knowing from who and what for? It surely would give me goosebumps. So there was the idea of starting Anonymousflower.com.

On a sidenote.

You can follow the process here: Anonymousflower.com and I hope as soon as it works, that you'll all be sending flowers right? :D


New CSS and FUNiversum

Journal Entry: Mon Apr 14, 2008, 2:10 PM



Sidebar

I worked so hard to have a sidebar and now I have nothing to report here :roll: Hmm, I might just put some deviations in here or something, or a friendslist.


:iconnorke: :iconnorke: :iconnorke: :iconnorke: :iconnorke: :iconnorke: :iconnorke: :iconnorke: :iconnorke:





Apr
14
FUNiversum


NEW CSS.

Wellll, it's not a new CSS. It's just been rewritten to match dA. As you can see, it's not finished yet. I still have to paint that header piece and stuff. And I have to start thinking of stuff to put in the sidebar. Now I've got one, I have to use it right? I tried to mimic my own site. You can see my site by clicking on the little stable in the header [how neat is that] Yes, I know it still has a little error when you hover it, but that's just because that painting isn't finished. It just needs some more buttons, and maybe a nicer footer.

FUNiversum news.

A few weeks ago, I was invited by Max to enter his annual manga/comic con in Belgium/Leuven. So I went there with =Yetska, *-lildragon-, ~nikkou-chan, *saitoufly and a few more. Unfortunantly, *la-ela couldn't be with us because she had to visit her grandfather in Amsterdam.

Now, *-lildragon- told me that on cons like that, it's not uncommon that an artist sells his/her work and she gave me tips on printsizes and stuff. All nice and well, I stood there with my 23 zillion prints. Turned out the con was manga only [there were a few people that liked other stuff too, but that must have been the poor side]. At the end of the con, I hadn't sold very much since all manga people just passed my stuff. Propably because the eyes weren't half the size the head or something. I don't know. Well, I sold some by the end anyhow.

After the con, we had loads of fun, ate noodles with sticks, went to see a huge bug, etc. It was all nice, nobody got killed and we were tired when we were home.

:peace:
Yannick


You will lose all rights to your own art

Journal Entry: Sat Apr 12, 2008, 1:59 AM


As an artist, you have to read this article or you could lose everything you've ever created!

An Orphaned Work is any creative work of art where the artist or copyright owner has released their copyright, whether on purpose, by passage of time, or by lack of proper registration. In the same way that an orphaned child loses the protection of his or her parents, your creative work can become an orphan for others to use without your permission.

Read the article or hear the radio interview.


edit: Moonbeam13 asked her legal advisors about it: [link]





____

#DigitalMedia is having a new Art Collection. This time the theme is: An Epic Love Story.

[read more...]




____

=Norke has now fanart or two or three :heart: or ¢FOUR

:peace: