Skip navigation.

v.plonk!

Can't wait to get my hands on the Dragon Age Toolset...

DragonAge skin

, , ,

After quite some time I decided, that it's time for a new skin for my blog. I will change the skin step by step into a theme skin dedicated to the video game Dragon Age: Origins, which will get released at the beginning of November.

I will write down some notes about the process here... just in case someone's interested. :lol:

Thoughts on the size
Even though I preferred to optimize the width of the page to fit into the Wii-Opera browser (maximum of 800 pixels), the blog software wasn't clearly optimized for it itself. So I decided to go back to the "common" width of the my.opera Community (920 pixels). I don't really like it, but I don't want to hack everything just to make it look perfect on my TV. :rolleyes:


The sidebar
It was a very cool effect to show the sidebar elements only when you move your cursor over it, but besides from being cool and giving more space for the blog posts, it was really useless. So this time I'll go back to the standard behaviour and will even highlight the sidebar by using a background colour for it. Hopefully it will look nicely. :smile:


The sprites and the background
The usage of sprites on the other hand was very cool and added a very nice look, making the website less boring. So it was clear to me, that sprites will be added again. Even more: I want that the new background image partly reaches into the content area. So I created a very large background and pulled the content up again. :up:


Text and background
As thobi mentioned the black text is a bit hard to read where it runs over the blood red background. My solution for it might look a bit odd but I used the CSS3 text-shadow for that. Once you've understood how to use it, it's pretty easy:
text-shadow: COLOUR HORIZONTALpx VERTICALpx BLURRADIUSpx;

example:
text-shadow: black 2px 2px 3px;

Furthermore you can add numerous shadows into 1 definition. So I combined just a few white "shadows" to make the text readable again:
.content {
    text-shadow: white 0px 0px 1px,
            white 0px 0px 1px,
            white 0px 0px 2px,
            white 0px 0px 4px,
            white 0px 0px 8px,
            white 0px 0px 12px,
            white 0px 0px 16px;
}



Burning headlines
You can even play around with that style a little bit to add a cool effect to your text: I used 4 shadows of different colours to create burning headlines for the sidebar. Therefor you just need to be aware, that browsers render the shadows one after another starting with the first one and then adding the next shadow on top of it!
#side h2, #side .h2, #side caption {
    text-shadow: #000000 4px -9px 9px,
            #FF0000 2px -4px 6px,
            #FFFF00 0px -2px 3px,
            #FFFF66 0px -1px 2px;
}

You see I started with the smoke (black = #000000) putting it high up, a bit right and adding a large blur radius. Then I added red (#FF0000), yellow (#FFFF00) and a very bright yellow (#FFFF66), moving each closer and closer to the text. :wizard:

Gamescom 2009CSSing gone wild - a cube full of borders

Comments

thobi 5. September 2009, 08:01

nice, but black on red (like in the beginning of the post) is really hard to read :frown: but you're not finished yet :wink:

Amnith 5. September 2009, 08:53

Looks sweet! And as thobi said,

Originally posted by thobi:

black on red (like in the beginning of the post) is really hard to read :frown:


lor74cas 5. September 2009, 10:18

Schalandra 5. September 2009, 13:12

Indeed... it really seems a bit harder to read. :eyes:
I'll "fix" that soon (maybe today... right now?).

There's still some work to do, but I'm already very pleased with the first impression. :happy:

thobi 5. September 2009, 13:51

nice workaround :smile:

Schalandra 5. September 2009, 13:56

Text shadows for the win! :lol:
... and I have something new to write about. And look at those beautiful burning headlines in the sidebar. :cool:

Tearx 8. September 2009, 04:31

what an impressed skin! wow ....
I got problem with my skin, maybe I'll create a new account and start everything all over again
see you soon!!!

p.s: missed u on skype
Jen

Amnith 8. September 2009, 06:20

Schlandra, it looks a bit weird with underlining on links in comments made by you. It kind of chops off the glow :smile:

Schalandra 8. September 2009, 10:00

Originally posted by amnith:

Schlandra, it looks a bit weird with underlining on links in comments made by you. It kind of chops off the glow


Haven't noticed that before, but it looks... interesting. I'll try to fix it. :smile:

Originally posted by Tearx:

I got problem with my skin, maybe I'll create a new account and start everything all over again


I suggest you do it the same way that I did:

1) save your old style somewhere
2) clear the current style and setup one of the default themes
3) start working on your new style
4) add required parts from your old style and modify those until it fits

This worked perfectly for me. :happy:

Tearx 8. September 2009, 16:12

I did it before and it was useless because I could not click to the "Save" button in the "Custom style sheet" ...it's really a mess :frown: hix hix

Schalandra 8. September 2009, 18:13

Then try it that way:

Click the textbox with your style. Press Ctrl + A to select all, then press Delete to clear the old style. Then press the tabulator key TWICE and press the enter key. That will save the style even if you can't see (or click) the button. :up:

SouthernCross 3. October 2009, 14:02

Very sexy. :cool:

Quinnuendo 17. October 2009, 10:59

Interesting style... Though I have to say that even with these shadows, the text is sometimes not really easy to read when it goes over the reds.

And another problem I noticed is that the page twitches a bit when scrolled. I am guessing it's because of all the shadows? The computer that I tested on and saw twitching has a 1.6 GHz processor, 1.5 GB RAM, and an older nVidia 7300 GPU.

Schalandra 17. October 2009, 16:10

Yep... clearly the shadows causing that problem. I will redo the skin in about a month... already got the new one on my mind. Expect to see massive changes taking effect (hint!). :happy:

lesswoodsend 20. October 2009, 03:22

wow! :cool: beautiful colours! and a fantastic idea too!

I wish I could find an example some place of what all of the CSS writing looks like to modify a page. I have tried many times to modify mine, but it alway disables the functionality. Do you know where I can see a sample CSS, that looks like a template, and I can choose the colours or texts or graphics on my own?

Schalandra 20. October 2009, 11:12

I would suggest to read through my series of "CSSing your my.opera site":

basics
part 1
part 2
part 3
part 4
part 5
part 6

But I like your idea of creating a "premade user css". I'll think about it. :up:

archae 20. October 2009, 18:21

I didn't know about multiple shadows for one definition. Thank you for that!
:up:

lesswoodsend 22. October 2009, 02:08

Oh thank you! :yes: I have many ideas but I am a mess with CSS. My latest look I needed to create graphic that when done, after many pats to go into it, I saved as one .png ... and just the same with the background, but for size I use .jpg and tile that. I would really like to customise the colours of my default texts, and fonts, also I do not know yet how do people put little photos into their blog title? That is so interesting to me!

I will read your CSS pages. I try very hard to understand too.

lesswoodsend 22. October 2009, 04:53

I have just finished reading all the tutorial pages you listed. You have made it much more understandable for me, thank you! :yes:

And now it is late so i will try some of this tomorrow perhaps! I am very excited! :smile: thanks!

Schalandra 20. November 2009, 21:49

Just for those who haven't noticed yet... the new skin is online! I made some nice progress this time... all in all the new skin is MASSively more EFFECTive. :lol:

Tearx 21. November 2009, 02:14

humnnn what a pro theme! I always have to learn more from you in designing theme.
I dont like the background, it's hard to read text and didnt match with the banner as well
Love your banner!!! look cool :smile:

hihi I will make a new one this weekend too. come and see! p:
Take care and have a great weekend dear!

Schalandra 21. November 2009, 03:50

Looking forward to see your new theme Jenny! :coffee:

How to use Quote function:

  1. Select some text
  2. Click on the Quote link

Write a comment

Comment
(BBcode and HTML is turned off for anonymous user comments.)

If you can't read the words, press the small reload icon.


Smilies

Download Opera, the fastest and most secure browser