Adding Custom CSS file in Shopify
Just add the below code in your theme.liquid file. {{ ‘custom.css’ | asset_url |…
Just add the below code in your theme.liquid file. {{ ‘custom.css’ | asset_url |…
Simply add below code in your theme’s function.php file. /** * Change number or…
app Open default.xml in your theme folder & Put this code anywhere after

Step 1 Connect FTP client Unzip extension package and upload them into Magento root…
Simply add filter hooks in your theme’s function.php file. add_filter(‘widget_text’,’execute_php’,100); function execute_php($html){ if(strpos($html,”<“.”?php”)!==false){ ob_start();…
Example:
If you only want to style the input fields of type=”text”: .text-outline{ text-shadow:-1px -1px…
Display any specific elements on a page, just define page ID in the below…