jessmileur Posted August 11, 2020 Posted August 11, 2020 Hi, all! I'm trying to add a colored bottom border to my header nav links. I've successfully coded the border, but my problem is that it inherits the text color, rather than the independent color I've coded in. Any thoughts as to what might be happening? Thanks! Code is below. //HEADER NAV UNDERLINE// .header-nav-item a { display: inline-block; color: #FFFFFF !important; text-align: center !important; border-color: #627360 !important; border-bottom: 2px solid !important; } Thanks in advance for any input!
jessmileur Posted August 11, 2020 Author Posted August 11, 2020 I've solved my own problem just now with this update code: //HEADER NAV UNDERLINE// .header-nav-item a{ display: inline-block; color: #FFFFFF !important; text-align: center !important; border-bottom: 2px solid #627360 !important; }
Recommended Posts
Archived
This topic is now archived and is closed to further replies.