Smultron

September 29th, 2008

I always loved strawberrys, but for me they were just tasty “morangos”.
But now, and yesterday my true friend and superhero Arnan, showed me “SMULTRON” wow!! :D
LOL The name means strawberry, which sounds at first delicious, and when you open the app in fact it is!

Easy to use, free, good looking, and for nooooobyssss like I am is perfect!
I really discovered PHP with this little app, and MAMP (server).
They are perfect and actually I found a new thing to learn, and I enjoy it :)
Yesterday I said welcome to php…! :D

PS. I just made copy paste of a script :(
$shelikes = true;

Firebug

June 1st, 2008

I discovered Firebug some days ago.
And I’m still exploring it! It’s very useful to me that don’t understand a thing about websites, HTML, CSS…
But Firebug has a thing that I love: you can chose a size to the letters!
No more small and “phone books size letter”. I think it does something that the Develop menu in Safari does, but I use a lot Firefox.

I’m happy with it.

Banners and Positions

May 30th, 2008

Another code post!
About a code I put on this blog, and it was for stuff in the right top corner of the page.
Even if you expand the page the thing there goes with.
However I had a banner on other site, and it wasn’t working… Well, I think it just didn’t work on Firefox, which is a little bit strange! I like Firefox, really, I use Firefox!
But, I just changed the place of the banner because I didn’t realize why it didn’t just work nice!
Well, the corners of the banner (280 x 300) were working, but because I changed for a new one, the button was on the middle…. so no more clicks on there, it wasn’t working!

Ok, but this served to know that I can use “div” for lots of things! I didn’t know that!

Wisdom!

May 22nd, 2008

“Nothing harder than for someone else to read code from someone”

This is the wisdom pearl I received today!
It looks like it’s just a sentence that makes sense for those who write code.
But for a rookie, like me, it’s important to know this.

Eureka

May 21st, 2008

Or should I say “Discover”!

Well, yesterday I finish changing the theme of another blog, and I discovered I can put stuff side by side to the top image!
I resized the image and I reserver some space to nother thing, which I didn’t know what thing.

After hours looking for horrible banners I saw the special one! It’s perfect! And looks perfect! Everytime you expand the window, it goes with the window. I’ts an easy code thing:

<div style="position: absolute top: 0 right: 0">
/* STUFF HERE */
</div>

And after discovered this I thought, well I don’t want people see the links in the status bar of the browser… I didn’t know where to find, but it was easy to find one that works perfectly!
You put this inside head!

<script>
 
//Hide status bar msg II script- by javascriptkit.com
//Visit JavaScript Kit (http://javascriptkit.com) for script
//Credit must stay intact for use
 
function hidestatus(){
window.status=''
return true
}
 
if (document.layers)
document.captureEvents(Event.MOUSEOVER  Event.MOUSEOUT)
 
document.onmouseover=hidestatus
document.onmouseout=hidestatus
</script>