Comments on [F2U HTML] Modular User All Comments Start of Thread Parent

AAAAA thank you, and no problem!! :D where it says alert-info, you can change it to alert-warning, alert-danger, or alert-success for other bootstrap colors, or you can add style="background-color: #000; border-color: #555; color: #FFF;" (replace with whatever hex codes you want) for custom colors! (should look like this: <div class="..." style="...">)

the second method i mentioned is using inline css (in the html section), btw—if you want to write global css for your userpage, select it using .alert-info (also .alert-warning, .alert-danger, and .alert-success) and style it the same way. e.g:

.alert-info {
  background-color: #000;
  border-color: #555;
  color: #FFF;
}

Aa thank you so much, that was really helpful!

And again thanks for sharing this template with us, it's so nice and easy to use!

no problem, glad i could help! ^^