hey kids!
Do you use a Suivant based ReadyTheme?
Have you joined ALL the cool kids and started to use Chrome Inspector to make your day Brighter, Lighter, Faster?
Well, if so, then you'll really love this tip (and if not, quit being such a square. Get Chrome...then google "Using Chrome Inspection Tools"...and don't make me tell you again.)
ON YOUR DEV SITE: Open your HEAD Tag Content template and locate:
Replace with...
If your dev site's domain starts with something other than 'dev.', change the pasted code accordingly. Now, when you right click on an element to inspect, you actually get to SEE the CSS file the selector it relates too. (And if you forget to remove this code before going live...no problem.)
Do you use a Suivant based ReadyTheme?
Have you joined ALL the cool kids and started to use Chrome Inspector to make your day Brighter, Lighter, Faster?
Well, if so, then you'll really love this tip (and if not, quit being such a square. Get Chrome...then google "Using Chrome Inspection Tools"...and don't make me tell you again.)
ON YOUR DEV SITE: Open your HEAD Tag Content template and locate:
Code:
<link href="../css/css.php" rel="stylesheet">
Code:
<mvt:if expr="'dev.' IN tolower(g.domain:name)"> <link href="../css/normalize.css" rel="stylesheet"> <link href="../css/base.css" rel="stylesheet"> <link href="../css/scaffolding.css" rel="stylesheet"> <link href="../css/typography.css" rel="stylesheet"> <link href="../css/buttons.css" rel="stylesheet"> <link href="../css/fonts.css" rel="stylesheet"> <link href="../css/forms.css" rel="stylesheet"> <link href="../css/tables.css" rel="stylesheet"> <link href="../css/colors.css" rel="stylesheet"> <link href="../css/slider.css" rel="stylesheet"> <link href="../css/magnific-popup.css" rel="stylesheet"> <link href="../css/helpers.css" rel="stylesheet"> <link href="../css/structure.css" rel="stylesheet"> <link href="../css/pages.css" rel="stylesheet"> <link href="../css/print.css" rel="stylesheet"> <mvt:else> <link href="../css/css.php" rel="stylesheet"> </mvt:if>
Comment