wow, Since St. Patricks day is around the corner, go and support the 317 proposition. they need 1 million signatures, when they get it they will go to Washington DC and lobby for a new national holiday. awesome, I think everyone needs more holidays anyways, we in the us alone have the least amount of holidays. whilst Europe has plenty. Even in my wifes Mother country of Japan, they go and have a few weeks off at a time (i’m exaggerating, but its almost like that.)
i just came back from he foo’s concert. i will post more in the morning. what an awesome show.
now that im all rested, the show started off with against me, and then a small set from Serj Tankian ant then finally the foo’s came out.
against em was pretty cool, they rocked out for their small set, i have to say that i would rather have heard Serj with system of a down. it just didn’t sound right w/o the rest of the group. his tour band or something was okay but gain it just wasn’t the same. plus i think it was a different crowd. I do have to say i did rather like his white top hat. it was very becoming of him. during the show, i though that i needed to
heres a clip from the show, from another fan. i have no idea how they get this footage, but thanks to youtube, its available. kinda shakey, but i say being there is awesome. i have to go see them next time when they are in town
towards the end, they even brought out the lead singer to Motorhead. Lemmy came out in total rcker fashion. and jsut ripped the crowd a new one. at the end of the piece, people in the audience were like “who is this guy”. thats pretty sad for one of the pioneers of rock.
man what a crazy website this is, can you believe that this website is dedicate to pho?
i could totally go for some pho now. hot delicious soup, with a bit of hoisin and sricha, sauce. i wish there was a 24 hour pho restaurant here. then i could go and take care of my cravings.
anyways eny joy the place. its another caffeine101 creation.
james
I totally want these paul frank glasses, I saw them on bunkeronline.com, but they dont take AMEX what a bunch of blowhards. anyways next weekend, i plan to go to the paul frank store in melrose and see if they have them.
- drag race to freedom
- convential wisdom
- self preservation society
i’ll post some of the pictures of me wearing them after this week.
so word press has a new gallery feature and it kinda doesn’t go with what your theme is right? the borders are all off, and they are spaced all strange. well with a bit of knowledge in CSS and PHP you can make these changes.
first off what i did to find this bit of code was use the grep command on the command line.
#grep -i -n -R "gallery" * > gallery.txt
this basically returns all your grepped information into a text file with the appropriate line number in the file name, this way you can see where yo locate this bit of code you need to change.
it basically told me that i needed to find this file “wp-content/shortcodes.php”
in this code on line 133 you will find the short codes function or called gallery_shortcode
inside this function you will see this bit of code.
$output = "
<style type='text/css'>
.gallery {
margin: auto;
}
.gallery div {
float: left;
margin:10px;
text-align: center;
}
.gallery img {
border: 0px;
}
</style>
";
this is the gallery css code. you can change it as i have above, or make it which ever way you want.
i chose to remove the width, and mak it all float over the side. it looks better in my eyes. if you want to center your gallery images, just add text-align:center to the gallery css portion. remove the float, and add “width:100px; display:inline;” and they should line up magically.
have fun gallerying!




