Something cool
https://css-tricks.com/quick-css-trick-how-to-center-an-object-exactly-in-the-center/
Web developer's Blog
Thursday, April 30, 2015
Friday, March 6, 2015
Images look stretched down on Android browsers
A recent issue that seemed to be happening was that carousel images had a bigger height than the image should have and made it looked stretched.
The main solution was to remove the height: 100% property.
The main solution was to remove the height: 100% property.
Thursday, February 26, 2015
Magento order emails not working
Since Magento 1.9.1, it seems that the emails are added to a cron queue that needs to be set up and can cause the emails to not work before that is done. As a developer, I have added
to my development site file cron.php after the last isShellDisabled declaration and it seems to be working, but is not the solution for live websites, only development purposes
$isShellDisabled = true;to my development site file cron.php after the last isShellDisabled declaration and it seems to be working, but is not the solution for live websites, only development purposes
Tuesday, February 17, 2015
Pagespeed does not like @imports in style sheets?
I didn't confirm 100% whether this is a pagespeed issue, but it seems like the server pagespeed module didn't allow the use of @import in the style sheet and thus didn't include any of the styles that were suppose to be imported. To solve this I simply copied the other styles over into the style sheet.
Thursday, February 5, 2015
Magento Cross Domain Font issue
I recently dealt with an issue on fonts where the font face fonts would load from a static... url instead of www..
To fix this I've added a more direct url in the font.css file
//www.something.co.za/skin/frontend/default/theme/fonts/something-webfont.woff and added the following code
to the page layout with the CDATA tags around the 'text'
//www.something.co.za/skin/frontend/default/theme/fonts/something-webfont.woff and added the following code
<block name="fonts" type="core/text">
<action method="setText">
<text><link href="//www.something.co.za/skin
/frontend/default/theme/fonts/font.css" rel="stylesheet"
type="text/css"></link>
</text>
</action> to the page layout with the CDATA tags around the 'text'
Tuesday, October 7, 2014
Magento facebook like button url change that seems to remove 'Be the first to like' text
http://www.facebook.com/plugins/like.php?href=getProductUrl(); ?>
?show_faces=false&layout=button_count&width=130&height=25
&action=like&colorscheme=light
Magento transactional email list
http://www.demacmedia.com/magento-commerce/comprehensive-list-of-magento-transactional-emails-and-their-designs/
Subscribe to:
Posts (Atom)