I'm new to Bootstrap - sorry if this question has been asked before; I searched it and could find only similar questions that didn't really help me - and I've read a lot that we should refrain from editing the original bootstrap.css as best we can.
Inevitably though, we'll try to do something that bootstrap doesn't directly support (or will need expanded) and we'll need to include our own code. For example, I'm working on a website and I changed some settings in the h1 style:
<h1 style="font-family:Lobster; font-size:72pt; color: #FF8300; margin-left:0px">Text here</h1>
so I used some in-line styles. Sometimes that's not always best, though. I wanted to change all links in my site to color: #FFF;. I had to change each one individually to:
<li><a style="color:#FFF" href="#">Hours</a></li>
<li><a style="color:#FFF" href="#">Menu</a></li>
<li><a style="color:#FFF" href="#">Story</a></li>
<li><a style="color:#FFF" href="#">Contact</a></li>
I realize I could have probably made a change to all links if I included and typed it up, but I'm not exactly sure what is considered the "right" or "best" way to do things and I don't want to go about starting bad habits.
Any help for this would be great. Thanks!