html - How apply new CSS in an project that already has? -
i'm working in project uses stylesheet
, improve website using foundation. tried put new stylesheet
in project this:
became this:
so stop using foundation
, use it, how ? did guys apply new css
in project has ?
update
<!-- css ganglia --> <link type="text/css" href="css/smoothness/jquery-ui-1.9.1.custom.min.css" rel="stylesheet" /> <link type="text/css" href="css/jquery.livesearch.css" rel="stylesheet" /> <link type="text/css" href="css/jquery.multiselect.css" rel="stylesheet" /> <link type="text/css" href="css/jquery.flot.events.css" rel="stylesheet" /> <link type="text/css" href="./styles.css" rel="stylesheet" /> <!-- /css ganglia --> <!-- css integra --> <link type="text/css" href="css/integra/style.css" rel="stylesheet" /> <!-- /css integra --> <!-- css foundation --> <!-- <link rel="stylesheet" href="css/foundation/normalize.css" /> --> <!-- <link rel="stylesheet" href="css/foundation/foundation.css" /> -->
this complicated process going performing here... 99.99% of time can not "plug , play" speak new style sheets. example 2 inputs there have float: left
defined in old stylesheet. new stylesheet overwrote styles , made them float: none
broke layout.
so, should do.
duplicate current site out development directory (just make folder in root directory called dev , duplicate entire site inside directory. you'll use directory develop without modifying site live.
include foundation stylesheet/s below current one. go through old stylesheet , figure out whats being over-written , merge new stylesheet.
Comments
Post a Comment