Can't remove bullet points from UL list with Icons
Date : March 29 2020, 07:55 AM
I hope this helps . I have a list with Icons here: , It is being overridden by the following CSS ul li:after
{
border-left: solid 3px #fe6500 !important;
}
|
Date : March 29 2020, 07:55 AM
hope this fix your issue I use wordpress and want to add social media icons to my footer. What I did so far is to add the following code to the footer.php: , You can add this CSS code and it will work nicely #social-buttons {
float: right;
position: relative;
top: -9px;
}
|
How to position social media icons using @media for max width?
Tag : html , By : mediafarm
Date : March 29 2020, 07:55 AM
hop of those help? Your style look good. The problem is with your selectors, 2 main problems 1- You need to put media querys at the bottom of your document. Remember css is a cascading language and will give priority to the last style. .fa {
background-color: black;
color: white;
text-decoration: none;
font-size: 30px;
border-radius: 50%;
width: 30px;
height: 30px;
text-align: center;
padding: 10px;
}
.fa:hover {
color: #7E7791;
background: white;
}
#social {
height: 40px;
width: 300px;
margin-top: 10%;
position: absolute;
z-index: 1;
margin-left: auto;
margin-right: auto;
left: 0;
right: 0;
}
@media (max-width: 1200px) {
.ul {
display: none;
}
.bars2 {
display: block;
}
#social {
margin-left: 0;
left: 0;
}
.social .fa {
display: block;
}
}
<div id="social" class="social">
<a href="#" class="fa fa-youtube-play"></a>
<a href="#" class="fa fa-instagram"></a>
<a href="#" class="fa fa-facebook"></a>
<a href="#" class="fa fa-twitter"></a>
<a href="#" class="fa fa-pinterest"></a>
</div>
|
React Fontawesome doesn't have free-brands-svg-icons, so cant show the social media icons
Date : March 29 2020, 07:55 AM
I think the issue was by ths following , Is there anyway i can use social media icons on my React Webpage? , As @fard said: npm i --save @fortawesome/free-brands-svg-icons
|
Social media icons not appearing
Tag : html , By : user103892
Date : March 29 2020, 07:55 AM
|