Can I Use Only Certain Elements Of Twitter Bootstrap?
Solution 1:
You can download whatever you need in the customized download of Twitter Bootstrap page. Just select whatever you need and click on download.
Also you can go to the project official repository, download all the less files, and compile only what is necessary for you, commenting the lines of the files that you don't need in the bootstrap.less
file.
Solution 2:
Well I suggest you take the specific CSS rules out of the bootstrap CSS file and place them in your own CSS file, because it's kind of useless if you include the whole bootstrap CSS file in your website and then just 1 or 2 CSS rules of it.
You could also try to place the bootstrap CSS file first and then your CSS file after it in the HEAD section of your website. Usually your CSS file will be "more important" and then the specific styles which are applied by bootstrap will be overridden with your own rules.
<link bootstrap css definition />
<link your css definition />
Post a Comment for "Can I Use Only Certain Elements Of Twitter Bootstrap?"