Is anyone else experiencing this issue? I have three different link colors.
.custom-links > a, a:link, a:hover, a:visited {
color: black;
}
.carousel-caption > a, a:link, a:hover, a:visited, a:active {
color: white;
}
.rss-links > a, a:link, a:hover, a:visited, a:active {
color: gray;
}
<div class="carousel-caption">
<h1>@slides.SlideTitle</h1>
@if (!string.IsNullOrEmpty(slides.SlideUrl))
{
<p class="caption-link"><a href="@slides.SlideUrl">@slides.SlideSubTitle</a></p>
}
else
{
<p>@slides.SlideSubTitle</p>
}
</div>
<div class="rss-links">
<a href="@item.LinkToSource">Read More</a>
</div>
<div class="col-md-6 link-padding custom-links">
<a class="btn btn-warning btn-block" href="@link.Url">@link.Name</a>
</div>
Added more links
No matter what I do, the styles of carousel-caption seem to be overriding my other two links. Am I overlooking something here?