Is there a way I can easily identify a selector in external stylesheet in css without going through all the code line by line? in html css

Viewed 34

I have downloaded bootstrap theme and am trying to style it using the external stylesheet. But am finding it difficult to identify the stylesheet applied to that particular element even though I identify the selector name but still. I need go through all the entire code searching for it line by line.

1 Answers

Put your custom stylesheet below the theme's stylesheets at head section, and override the styles using identified selectors.

Related