hi...does anyone know the "best" Ubuntu version to choose for a VPS host? i'm after stability and scalability. Slicehost offers Hardy, Intrepid, Jaunty and Kramic. any ideas?
hi,has anyone used Unirgy_StoreLocator extension for Magento? i've got the Google map showing up but how can i change the default map location and zoom value? thanks.
has anyone used the uStorelocation extension for Magento (to embed Google maps)? what goes into the field named "Default Location Address" under
System Configurations Store Locations
The docs don't say anything about this and the screen shots on the extension page just show "97236". any ideas? thanks
hi...though it's debatable, i've heard majority of CSS developers prefer multi-line because of the ease at which a property can be found within the CSS file. But doesn't this make the CSS file bigger and less readable on the whole? I think single-line lets you scan the CSS file much faster. Any thoughts?
hi...does anyone know the "best" Ubuntu version to choose for a VPS host? i'm after stability and scalability. Slicehost offers Hardy, Intrepid, Jaunty and Kramic. any ideas?
how do i add default magento contact form to a static block?
{{block type="core/template" name="contactForm" template="contacts/form.phtml"}}
doesn't seem to work.
thanks
hi, i'm new to AS3. how do i go about executing a custom function n number of times and then executing another function n number of times repeatedly?
eg.
function firstOne():void { }
function secondOne():void { }
i need firstOne() executed say 3 times and then secondOne() 3 times and then firstOne 3 times again and so on.
thanks
how can i sort all officers based on their ranks
jQuery
$.get('officers.xml', function(grade){
$(grade).find('officer').each(function(){
var $rank = $(this).attr('rank');
});
});
XML (officer.xml)
<grade>
<officer rank="2"></student>
<officer rank="3"></student>
<officer rank="1"></student>
</grade>
thanks.
There are so many methods out there and it's a bit confusing but what's the best way to change the default grid columns in the Magento 1.4 product catalog?
Thanks
why is it that every time moveSlide() is called, the values traced are the same?
var slideWidth:Number = 680;
var newPos:Number;
function moveSlide () {
var currentPos:Number = image_holder.x;
newPos = currentPos + slideWidth;
trace('currentPos ' + currentPos);
trace('newPos ' + newPos);
}
moveSlide();
moveSlide();
moveSlide();
(image_holder is a movieclip with the images)