Find Out Google Feed’s fields Character Limits
Here are the limits google expects for your google base feed fields
Here are the limits google expects for your google base feed fields
Here is a command you will need to use to install Adobe PDF reader on command terminal
sudo apt-get install acroread
You can also install the reader as well as the plugin for FireFox like so
sudo apt-get install acroread mozilla-acroread acroread-plugins
You may need to restart your firefox for the plugins to take effect. (If you are using firefox currently that is!)
sudo apt-get install p7zip
Moving prestashop to another host is an easy process but can also make your head spinning especially if your site is using Smarty templates.
To move the site and make it work you only have to follow the following steps
1) Move all the files (use FTP or any other method)
2) Export and import the database to the new server.
3) Navigate to site/config/settings.inc.php and update the database details. Remember to update the __PS_BASE_URI__ as well to reflect your current settings.
4) If you are using Smarty templates, MAKE SURE you enable write permissions for the entire folder.
NOTE:
Be careful with permissions step if you are going live
Got irritated with dotted lines around active links on firefox? I did and if you ever wondered, here is how you can remove them..
a:active, a:focus { outline: 0 }
You can create your official tweet buttons (including) count button here
Get your sharing button here!
If you want to get the vertical align to work on div elements here is a nice css solution for you!
display: table-cell; text-align: center; vertical-align: middle;
Haven’t tested on all browsers so try it first before implementing it on the production server!
Been having issues with link buttons on IE and found this solution that may help someone too..
Had this link button in one of the projects i have been working on that didn’t work
<a href='someurl.com'><button title='click me'></button></a>
The solution for this, which i think its a bit more clean was to use the JavaScript window.location to get around the problem on IE:
<a href='someurl.com'><button title='click me' onclick='window.location="someurl.com"'></button></a>
this worked fine and solved my issues.
You could also try one of the following options:
<input type="button" onclick="top.window.location='someurl.com'"> ( if in frame)
<input type="button" onclick="window.open('someurl.com')"> (To open a new window)After days of torture trying to get Less CSS to work on my laptop, i then painfully found out you can actually install Less CSS in four beauty commands in less than a two minutes!
Thanks to my mate for his Ubuntu Knowledge and Search capabilities!
Here is the code… so u don’t get lost in the bush like i did!
sudo apt-get install rubygems1.8 sudo gem install rubygems-update sudo update_rubygems sudo gem install less
After install~: Run lessc styles.less to create your programmed css file!
Beauty