This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
691
Off-topic / Re: Adding Value to the project
« on October 20th, 2011, 11:40 PM »
I think that if I had to pay for a forum software, I'd go for IPB...
692
Seems interesting!! :)
http://www.kendoui.com/
http://www.kendoui.com/
693
The Pub / [Archive] Re: Logo Madness
« on October 17th, 2011, 01:52 PM »
I like simple 15 and simply red!! :)
694
Off-topic / Re: Post count fever
« on October 12th, 2011, 05:59 PM »Please, I'm a geek, not a nerd.Quote from MultiformeIngegno on October 12th, 2011, 02:51 PM nerd :whistle:
695
The Pub / Re: Spell checker
« on October 12th, 2011, 02:54 PM »Then we just have to get people using it - and given the amount of XP users out there, that could take a while.
697
The Pub / Re: Spell checker
« on October 12th, 2011, 02:49 PM »
IE 10 will have spellchecking too.
http://ie.microsoft.com/testdrive/Browser/SpellChecking/
http://ie.microsoft.com/testdrive/Browser/SpellChecking/
698
Features / Re: Birthday, calendar, plugin, core [VOTE NOW!]
« on October 12th, 2011, 08:24 AM »
Ops, I'm late! Anyway I'd have voted for 2 separate plugins too. :)
699
The Pub / Re: English British support
« on October 11th, 2011, 10:31 PM »
Yeah, British English should be the only one (no American English at all)!
700
Off-topic / Re: WIFI Kill
« on October 11th, 2011, 08:12 AM »
Looking this from the other point of view: how can users be immune from the ARP Spoofing?
701
Off-topic / Re: WIFI Kill
« on October 10th, 2011, 11:24 PM »Wouldn't be hard to write, if the PC is wifi enabled.Quote from MultiformeIngegno on October 10th, 2011, 10:54 PM :O :O Is there something like this for Windows?
702
Off-topic / Re: WIFI Kill
« on October 10th, 2011, 10:54 PM »
:O :O Is there something like this for Windows?
703
The Pub / Re: Spell checker
« on October 10th, 2011, 08:24 PM »
I voted for deletion... I use the one built in my browser (if any)!
704
Off-topic / quirksmode.js
« on October 7th, 2011, 01:52 PM »705
Off-topic / Re: Randomizing a jQuery slideshow
« on October 1st, 2011, 01:54 AM »You should be showing your pics in order after the first randomization. I noticed several pics being faded out only to show up again next...
This is the code (1st image is random, then the "normal" order):
<div id="slider">
<ul id="sliderContent">
<?php
$header = array(
array('http://virgilio.lorenzoraffio.com/wp-content/themes/virgilio/images/header/aula_magna.jpg', 'CAPTION AULA MAGNA', 'right'),
array('http://virgilio.lorenzoraffio.com/wp-content/themes/virgilio/images/header/portone.jpg', 'CAPTION PORTONE', 'bottom'),
array('http://virgilio.lorenzoraffio.com/wp-content/themes/virgilio/images/labchimica.jpg', 'CAPTION LAB CHIMICA', 'top'),
array('http://virgilio.lorenzoraffio.com/wp-content/themes/virgilio/images/header/aula_informatica.jpg', 'CAPTION INFORMATICA', 'bottom'),
array('http://virgilio.lorenzoraffio.com/wp-content/themes/virgilio/images/header/atrio.jpg', 'CAPTION ATRIO', 'top'),
);
$rand = rand(0, count($header) - 1);
echo '<li class="sliderImage"><img src="', $header[$rand][0], '" width="', HEADER_IMAGE_WIDTH, '" height="', HEADER_IMAGE_HEIGHT, '" alt="" /><span class="', $header[$rand][2], '">', $header[$rand][1], '</span></li>'; ?>
<li class="sliderImage">
<img src="<?php echo get_stylesheet_directory_uri(); ?>/images/header/aula_magna.jpg" width="<?php echo HEADER_IMAGE_WIDTH; ?>" height="<?php echo HEADER_IMAGE_HEIGHT; ?>" alt="" />
<span class="right"><strong>L'aula magna</strong><br />CAPTION AULA MAGNA</span>
</li>
<li class="sliderImage">
<img src="<?php echo get_stylesheet_directory_uri(); ?>/images/header/portone.jpg" width="<?php echo HEADER_IMAGE_WIDTH; ?>" height="<?php echo HEADER_IMAGE_HEIGHT; ?>" alt="" />
<span class="bottom"><strong>Il portone</strong><br />CAPTION PORTONE</span>
</li>
<li class="sliderImage">
<img src="<?php echo get_stylesheet_directory_uri(); ?>/images/header/aula_informatica.jpg" width="<?php echo HEADER_IMAGE_WIDTH; ?>" height="<?php echo HEADER_IMAGE_HEIGHT; ?>" alt="" />
<span class="top"><strong>Laboratorio di Chimica</strong><br />CAPTION LAB CHIMICA</span>
</li>
<li class="sliderImage">
<img src="<?php echo get_stylesheet_directory_uri(); ?>/images/labfisica.jpg" width="<?php echo HEADER_IMAGE_WIDTH; ?>" height="<?php echo HEADER_IMAGE_HEIGHT; ?>" alt="" />
<span class="top"><strong>Laboratorio di Fisica</strong><br />CAPTION INFORMATICA</span>
</li>
<li class="sliderImage">
<img src="<?php echo get_stylesheet_directory_uri(); ?>/images/header/atrio.jpg" width="<?php echo HEADER_IMAGE_WIDTH; ?>" height="<?php echo HEADER_IMAGE_HEIGHT; ?>" alt="" />
<span class="top"><strong>Atrio</strong><br />CAPTION ATRIO</span>
</li>
<li class="sliderImage">
</li>
</ul>
</div>If the 1st (random) image is "Aula magna", the non-random list have still "Aula magna" as the 1st item.. So I'll have again the same slides one after the other..