Hey, it’s Spire here. This blog died out a while back, mainly due to inactivity of those who maintained it. Recently promoted forum leaders Henry and I have big plans for the blog. So stay tuned!
In this tutorial, I will go through the basic ideas behind making dynamic signatures like those you can find on RuneCrypt. I will only talk about the underlying coding concepts necessary for this, so making the result something a bit more attractive will be up to you - my gfx skills are a bit lacking. With the basics mastered, you should be able to customize the script yourself, adding more dynamic information or tweaks that you want included. Note: You will likely need a basic understanding of PHP to fully understand this tutorial. “Copy and Pasting” the final code will work, but only to a certain extent. I will not go over how to set it up on your website, or how to customize it. Anyways, let’s get started! Here is a preview of what we will be making: http://gfx.runecrypt.com/sig-tut.php
Yes, i’ve been away for quite a while… I was quite busy with real life stuff but well, summer break for some people has already ended, and some already are sharpening their pencils. Me being in my senior year of high-school, means I’ll have quite a lot of spare time hopefully to work on the forum and blog.
What can you expect for this up coming few months?
- Except for the Secret Santa that’s running as we speak. so far 6 entries, but there’s still time for you to enter. Remember this isn’t all about skill - it’s about having fun and joining the gang!
- We also have the upcoming Artist of the Year event. still some time till that ends so start gathering your portfolio.
- afterward, you can expect SotM and AotM to storm back in to the forums.
- This week I will release a resource guide: what are each form of resource, where to get good and legal ones.
- some more vlogs and such, coming in mid September - with guides, news and such.
- New writers hopefully. (more on that shortly :P)
Calculating all of the factors, I see that this blog will really improve if any of you guys would like to take a part time job of writing stuff for the blog. Writers who wish to submit anything from news to tutorials are very much welcome to do so by PM me on RuneCrypt or emailing me: Barak.shelef@gmail.com
Head’s up for October - I’ll be away for 3 weeks or so on vacation in South Korea. I’m planing to keep an eye on whats going in south Korea and everywhere else i’ll be at.
So any of you who have pictures of yourselves in vacation be sure to check out an up coming topic… and post yours
For now, I have to go… but that’s for your patients - I’ll get this blog back on track asap
Runecrypt Graphics Blog brings you yet another signature tutorial with the PSD, stocks and resources used.
in the pack you’ll find: The original PSD (for learning use only - you may not copy any layers from there) and all the stocks and resources used.
This is a pretty simple signature, jsut shows how i like to use a lot of resources. So what I first do (isn’t in the tutorial) is pick 4-5 stocks which will act a specific purpose (main stock, coloring, effects, composition, etc…) So here goes: Read the rest of this entry »
OH MY GOD! two new competitions, and some other shit! you know you wanna…
Due to popular demand, i will not post naked pictures of myself. Be sure to check out the upcoming tutorial though…
Sorry it took me so much time to post this, but I had some problems with my computer
Enjoy this small tutorial… any comments, remarks or qustion - feel free to contact me…
July 2008 Vlog entry
Jul 3
You know you love it, and it strikes again! the official Runecrypt Graphic Art Forum Blog presents the July 2008 Vlog.
This month’s video tutorial’s gonna be posted on a separate video, so that should be out tomorrow or so.
Links and such:
Diablo III New Art Direction:
http://multiplayerblog.mtv.com/2008/07/02/diablo-iii-art-direction/
Renewed artistic direction for Diablo 3 Petition:
http://www.petitiononline.com/d3art/petition.html
Is it art:
http://blogs.reuters.com/fanfare/2008/07/01/people-running-is-it-art/
Yes I know the next vlog should be out, but I was swamped up until a few days ago with tons of test. Now it’s over so I can go on and create it so expect it sometime next week
some spoilers, there’s gonna be a quick explination about vector work and other stuff of course…
Also coming soon is a Resource Tutorial - where to look for resources and which ones to chose.
In the spirit of vectoring, sonic oh so helpfully contributed this tutorial on pen tooling! thanks man, and enjoy you guys
Hi there, welcome to my very first tutorial! This is fairly easy to follow, there’s nothing too hard. You should be familiar with the smudge tool though. I’d say it’s Intermediate difficulty.
Let’s begin, shall we? Read the rest of this entry »
When it comes to web editing, especially in sites where most of the material is entered as raw text, it’s important to know exactly how you want the site to look like before you approach any line of code.
In my experience with all kinds of sites and technologies, CSS is the best way to control all your styling and for those of you who are planing to build a new site is an essential syntax to perfect. It’s easy, quick, and very, very powerful. For those who don’t know CSS stands from Cascading Style Sheets, and it’s a client side code that basically integrates styles into the HTML code of the file. This allows you to easily control your editing from outside the HTML file itself, leaving the content untouched while you change all the styles. In some places CSS can even replace special Javascript codes, but that is really dependent on the browser.
First of all I’ll explain a bit about the issues you’ll get into when you go into web editing. System and browser support, overall legibility and such.
Fonts of the Internet
not all fonts are supported by all computers simply because they require the base *.fon or *.ttf font file, and they generally vary between different Os’s. What was done to make it all easier when it came to HTTP and the world-wide-web is simply to allow the fonts to be chosen from a family rather than a specific font. For instance, let’s say I want a page to use Arial font, but I can’t trust that every computer on earth has the Arial font file, so what I will do is assign the priority of fonts I would like to be used in the page: i.e. Arial > Sans Serif.
Generally it’s accepted to use, and are available on all default mac and win, can be found here: http://www.ampsoft.net/webdesign-l/WindowsMacFonts.html
Basically what this allows us to do is control the font more freely, without getting stuck with the default web browser’s font.
How to do it in CSS:
basically in CSS the syntax is [#] [.] tag [:status] { name: value; name2: valu…}
Where the Hash sign stands for group, the dot for class and without any is just a regular pre-set HTML tag and the :status is used for the status that element is in (for instance: a:hover – works for anchors which the user hovers on, also known as Mouse Over Link).
The line of code I talked about earlier will look like this for the <p> (paragraph tag in HTML):
P {
font-family: Arial, Sans-serif;
}
Thats it, it’s that simple. And of course you could be more accurate and continue on with other fonts before it reaches the default Sans font, just by adding more common font names separated by commas
in that same way: font-family: Arial, Helvetica, Verdana, Sans-serif;
Browser support of styling – CSS warning!
The CSS classes and ways to edit a web page have grown so much you’ll always need a go-to guide to find exactly what you need and how to use it. I suggest the W3 School CSS site – basically, it has everything.
Thing is, not all of those classes work with all of the internet browsers: IE and all its versions, Netscape, Mozilla Firefox, Oprah and others. You’ll need either to check with the CSS class listing to see if it fits the requirements, usually you’ll want it to work with IE 6 and up, Firefox 2 and up and Netscape 6.1 and up – but the more, the merrier!
The general rules of thumb, yes we have 3 thumbs…
Sure any site is different and it should be your creative outlet, but there are usually a few ways that work well when you need to handle large amounts of text. These work on the font itself, the composition and the dosage.
Font-wise, as you can see today most sites use some kind of sans-serif font, either Arial, Helvetica or Verdana – all of which look differently in different color schemes and amounts.
Arial and Helvetica being neo-grotesque and grotesque are very close together, the stroke width in comparison to the point-size and x-height is much smaller, where as Verdana is much sleeker, its more round overall and thus looks good in smaller amounts of text. Of course you can always use Serif fonts and thats usually used in more article-oriented sites. Heavy text looks much more professional when it comes in serif.
When it comes to how you block the text is again important to look at how much body the character has in comparison to it’s point-size. The fuller it is, the less I’d suggest it’d be in a full block format. Full block is generally when you use justified alignment. Blocking Verdana is much better though, since it already has a very geometric feel to it. So when you have a structured table with space for a small amount of text, you should stick to justified Verdana, but remember that the same font is suggested to be kept throughout the site (except for menus or logos which can be something different but you should really keep it simple and straight.
Getting the general paging is important as well, I mentioned some about paging in the first part but here’s the general workout when it comes down to HTML. The most important rule of non-articular text is to keep it properly composed. By that I mean: work the page more towards the style you want – and use a lot of tables to get it straight.
On the other hand you have more article-oriented writing such as blogs or news sites that have a lot of text stacked. What you’ll want to do here is actually keep it straight and use more CSS and code to format rather than tables. It’s much similar to working with MS Word or any other text editor – and this might sound pretty simple but it’s not. Here’s how you keep a clean page, step by step:
1. Write correctly: use paragraphs with key sentences and connectors with in the paragraph itself and between the paragraphs.
2. Post editing: make sure you use a good size and family font and make sure you either oblique or italic the emphasizes, make your examples stand out and such, and create levels of headers.
3. Code like a professional: When you code the body itself make sure you use the <p> tags for each paragraph and all the <em> tags for emphasizes and the <h#> tags – remember you can edit exactly how each one looks in the CSS later.
4. Adding images and illustrations: Use the CSS to make the image as a float image – when embedding an image add a style property “style=’float: left;’†(or right, whatever suites you). Experiment with the CSS’ endless ability to prefect your system.
Summary
When it comes down to the text you put on your website, just remember what it’s used for. Is it an article? Is it an ad? Is it a catchphrase? Keep it professional, simple and clean, or go wild, as long as it fills you’re need.
As to these articles, that’s basically it, I hope you learned at least one thing, cause goddamn it I know I have. The text has a lot of meaning besides the words themselves; when you take a page you look at the black and the white, at how much white there is next and away from the black and how much words you put into it. No matter what you want to say, or in whichever media: print, pixel or painted, just make sure you don’t mess it up.
