It works great but I don't really understand the fa-2x bit. Is there a better/cleaner way of changing this size? Can the size of the icons for email and location sections be sized separately?
Will changing the size of fa-2x mess up other sections of my website?
How do I remove my phone number from my contact page?
I assume you are talking about this section:
http://clapat.ro/themes/newave-wordpress/#contact
to hide only the phone number use
}
otherwise you can remove the shortcode itself from the page content
thanks
Thank you.
Clapat Support
https://www.clapat.com/
Review Envato Item Support Policy
Cool, this worked for the actual phone number itself. How bout the phone icon?
.phone-icon{
display: none;
}
Thank you.
Clapat Support
https://www.clapat.com/
Review Envato Item Support Policy
Awesome. I wanted to share some other code here to size the Email and Location to make it look a bit more normal:
.fa-2x {
font-size: 3em;
}
.company-email{
font-size: 25px;
margin-top: 15px;
margin-bottom: 30px;
}
It works great but I don't really understand the fa-2x bit. Is there a better/cleaner way of changing this size? Can the size of the icons for email and location sections be sized separately?
Will changing the size of fa-2x mess up other sections of my website?
the changes will be applied anywhere else .fa-2x is used
so you can restrict the change only to the div in question such us
#contact .fa-2x{
for example, not sure what's the id of your div is
thanks
Thank you.
Clapat Support
https://www.clapat.com/
Review Envato Item Support Policy