To enable template path hints in Magento 2 follow these steps: 1. Make sure your Magento 2 is in the default or developer mode (How… Read More →
CSS :nth-child() Selector – Useful :nth-child Recipes
June 28, 2019
CSS :nth-child() Selector Select Only the Fifth Element li:nth-child(5) { color: green; } Select All But The First Five li:nth-child(n+6) { color: green; } Select… Read More →
:not() pseudo-class with multiple arguments in html
June 21, 2019
:not() pseudo-class with multiple arguments in html input:not([type=”radio”]):not([type=”checkbox”])
Attribute selectors – CSS [attribute*=value] Selector | Select Element By Specific attribute value
June 16, 2019
Use the following code to Select Element By Specific attribute value [class^=”top”] { background: yellow; } or[class*=”me”] { background: yellow; } It doesn’t have to… Read More →
Understanding Magento 2 File System Permissions and Ownership Magento 2 installation on Ubuntu servers running Apache requires precise file system permissions and ownership configuration to… Read More →
Get Root Directory Path of a PHP project
June 8, 2019
Understanding the Fundamentals of Directory Paths in PHP In the world of web development, PHP remains a cornerstone for building dynamic websites and applications. One… Read More →