Hello there, I am trying to remove the following things from our college newspaper website
1.Tags item under sharing menu which appears in every page and post
2.Removing login/sign in icon next to social media icons
3.The mobile site’s logo is covered by menu option so is it possible to solve the problem without shrinking the size
the college’s newspaper website is collegian.tccd.edu. If you could help me anything, that would be great
thanks
maniv
Hi,
Issue1.To resolve this issue, you can add the following code to the Custom CSS.
.single-post .entry-sidebar .tags-links {
display: none;
}
Issue2.
To remove the log in from the right side of the primary menu, you can open the wp-contentthemesdw-focusinctemplate-tags.php file then remove the following code(line 76):
<li class="user"><a href="<?php echo esc_url( wp_login_url() ); ?>"><i class="fa fa-user"></i></a></li>
Or you can log in to Dashboard > DW Focus > General, add the following code to the Custom CSS section:
.navbar-nav li.user {
display: none;
}
Issue3.
To resolve this issue, you can add the following code to the Custom CSS.
@media (max-width: 480px) {
.site-navigation .site-brand img {
width: 70%;
}
.site-navigation .site-brand {
padding: 8px 10px;
}
}
Hope this helps !
Thank you for replying. Will let you know if it works
Wow worked like a charm. Thank-you so much. Do you make plugins too. Can you recommend me a plugin to play mp3 files.
You can try some following plugin:
https://wordpress.org/plugins/wp-miniaudioplayer/
https://wordpress.org/plugins/mp3-jplayer/
Also, you can find the plugin here: https://wordpress.org/plugins/tags/mp3-player
Hope this helps !
Please login or Register to submit your answer