After a few delays, we are finally releasing the BIG and long-waited update of our ever-popular MiniDock with Lightning connector.
jQuery Cycle Pager Style as Dots with CSS
jQuery Cycle is a great plugin to create image slides on your website. Out-of-the-box, it is so simple to use but you can explore the options extensively to get the functions and effect that you expected.
One of the best feature is the ‘pager’ option that will create a pagination of your slideshow. By default, the function will look up for a container with ID value of ‘pager’ and generate this code:
<div id="pager"> <a href="#" class="">1</a> <a href="#" class="">2</a> <a href="#" class="activeSlide">3</a> </div>
Without any style, the pager will be shown simply as “123″ on the front-end. You can of course stylize it any way you like it, I used to fancy the background-image replacement technique, but I want to share the CSS codes that will display it as dots or bullets. Since this is pure CSS, you can easily change the colors or size quickly and easily.
#pager {
/* you can add positioning properties here if needed */
width: 75px; /* change as required */
padding: 0;
height: 14px;
z-index: 999;
}
#pager a {
display: block;
float: left;
width: 10px;
height: 10px;
text-indent: -999em;
background: #fff;
border-radius: 10px; /* must be the same as width and height */
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
box-shadow: 0 0 1px 1px #707173; /* border color */
margin-right: 10px;
}
#pager a {
background: #c0c0c0; /* optional: color when hovered */
}
#pager a.activeSlide {
background: #707173; /* color when active */
}
Quick preview of how it will look like:
![]()
There you go. Simple pager for a great slideshow plugin.
Mika, universal stand for tablets
Have I mentioned about Mika? I guess not, since my last post had been over a month ago and we launched it around the end of March. Check out the video as it will describe of what it is. For more information, go to Mika product page.
If you have any comment, feel free to shout it out!
Multiple Currency in Google Analytics using Traditional Syntax
Last month Google finally announced multiple currency in Google Analytics for e-commerce sites. A long waited feature so the news was a really big deal. More information about it can be found here.
To apply it, you only need to add one simple line on your GA code before the call to _trackTrans:
_gaq.push(['_set', ‘currencyCode’, ‘EUR’]);
More detailed information can be found on their Ecommerce Tracking documentation.
The minor problem is the example only shows the code for newer Asynchronous Syntax. What if you are using the Traditional Syntax? Well you can either update your code to use Asynchronous Syntax or use this line:
pageTracker._set('currencyCode', 'EUR');
Thanks Google!
New Exciting Project Coming
I am going to take some of my free time to work on a new personal project so I may have less time to blog in the next few weeks. No doubt I will post the updates here though.
Put That Unsubscribe Link on Your Email Campaigns Despite the Law
The Internet is growing and changing industries so fast, some countries are still trying to keep up and have not been able to establish necessary regulations to control its influence related to privacy and commercial activities. No, I am not talking about Internet censorship (which I am totally against btw). I am referring to one thing that kills productivity the most, that is spam.
Continue reading
Responsive Multi-level Menu to Dropdown
Thanks to this excellent tutorial from CSS-Tricks explaining how to create list-based menu into select dropdown on small screens, I was able to finally complete the product detail pages on Bluelounge website. My homework was not finished though. With around 20 active products on the website, I needed to preserve the product categories within the dropdown menu to make it easier for visitors to check out other products. With some adjustments and a few extra lines of codes, it now works the way I wanted.
Continue reading
Quick Modules Checklist When Developing New Website on Processwire
It’s amazing how fast ProcessWire is growing. Soon after version 2.0 had been released, Ryan and the developer team hit the gas and made it one of the fastest developed platforms I notice since WordPress. Currently there are already about 140 additional modules available on its website, plus the core modules which some are wisely not activated by default after installation.
As with other CMS plug-ins, it is so easy to get lost in the vast list of directory. Especially if it is your first time using ProcessWire for your project. With that in mind, I have hand-selected a few modules that I find very handy and almost always use on for my projects.
What They Probably Don’t Tell You Before Signing Up to Social Media Promotion Software
Whether it is to increase engagement, likes/followers, or convert them into customers, you can find many software or platforms on the web available at your disposal to help you achieve your social media goals. Most of them also offer different pricing options so you can easily choose a plan that fits your budget.
Before we go, note that generally there are two types of social media software: for management/monitoring and for creating app-powered content. A few offer both as an integrated solution, on a higher priced plan. What I want to talk about is the later, platform that offers you tools to create specialized content on your social media page, in this case specifically for Facebook brand page.
Continue reading
Perfection
Perfection is achieved, not when there is nothing more to add, but when there is nothing left to take away.