Hello,
Remove the above CSS from Custom CSS box and save.
Now Go to enigma theme folder and open header.php file and see line no. 60 and replace the code with below code –
<li class="instagram" data-toggle="tooltip" data-placement="bottom" title="instagram"><a href="<?php echo esc_url($wl_theme_options['instagram']) ; ?>"><i class="fa fa-instagram"></i></a></li>
Now use the below code in Custom CSS box and save –
@media(max-width: 667px) {
.social li.facebook {
display: inline-block;
}
.social li.twitter {
display: none;
}
.social li.linkedin {
display: none;
}
.social li.youtube {
display: none;
}
.social li.instagram {
display: none;
}
}
@media only screen and (max-width: 480px) and (min-width: 200px){
.head-contact-info {
display: none;
}
.social li.facebook {
display: none;
}
.social li.twitter {
display: none;
}
.social li.linkedin {
display: none;
}
.social li.youtube {
display: none;
}
.social li.instagram {
display: none;
}
}
For your second issue –
Open home-blog.php file and see line no. 41 and replace the code with below code –
<?php the_excerpt( __( 'norwegian' , 'enigma' ) ); ?>
We dont understand from where you want to change the category. Let us know clearly.
Thanks.