Select the last items with nth-child in CSS
August 27, 2019
:nth-child Select the first list item li:nth-child(1) { } Selects the second element in a list li:nth-child(2) { color: lime; } Selects every fourth element… Read More →
August 27, 2019
:nth-child Select the first list item li:nth-child(1) { } Selects the second element in a list li:nth-child(2) { color: lime; } Selects every fourth element… Read More →
August 21, 2019
hover menu toggle with jQuery Go to the link and download superfish. Get the “superfish.min.js” from the “dist/js” folder https://superfish.joelbirch.design/ And also create another file… Read More →
August 18, 2019
Go to Admin > Stores > Configuration > Advance > Admin > Security Set “Admin Account Sharing” to Yes
August 17, 2019
In the modular architecture of Magento 2, the Controller is the vital traffic controller that maps a specific URL to a dedicated piece of business… Read More →
August 15, 2019
For an eCommerce store running on Magento 2, the checkout page is the culmination of the customer journey. A smooth, functional checkout process is critical… Read More →
In the architecture of a scalable PHP application, manual file management is a significant bottleneck. Standard procedural coding often relies on a long list of… Read More →
August 13, 2019
Your store’s logo is the cornerstone of your brand identity. In Magento 2, changing the logo—whether in the header, email templates, or admin panel—is a… Read More →
August 13, 2019
Remove page title Create a cms_index_index.xml file in “/app/design/frontend/(vendor)/(theme)/Magento_Theme/layout” and paste the following code – <?xml version=”1.0″?> <!– /** * Copyright © 2016 Magento. All… Read More →
Adding a class in JavaScript without replacing existing classes is one of the most common DOM manipulation tasks developers face when building interactive interfaces. Whether… Read More →
Change Customer Login Title in Magento 2 Create a customer_account_login.xml file to change title of customer login For theme – app/design/frontend/{Packagename}/{themename}/Magento_Customer/layout/customer_account_login.xml For module – app/code/{Package}/{Module}/view/frontend/layout/customer_account_login.xml… Read More →