I noticed that the panel for categories have changed slightly with the latest Newsmag theme update. In the category panel, I had the ‘show featured slider’ turned off, but since that option is no longer in the panel, I disabled the ‘category top posts style’. However, the big grid still shows the category featured slider on mobile and tablet devices.
Furthermore, other changes like disabling the category header did not reflect on mobile. How do I fix this?
Hi,
Please make sure that you you did not set big grid to appear from that specific category – http://screencast.com/t/gPsKw7Kl0n I this case the Big Grid will appear on that category page.
Also please provide a link, if you still have this issue, as I couldn’t recreate this.
Thanks!
The issue has been resolved; i think the cause was the cache on my devices.
On another note, I want to change the social icons on the homepage and post page to those on these two sites http://www.viralnova.com/ (for the homepage) and http://www.bbc.com/earth/story/20150306-horses-remember-more-than-we-think (for the post page). How can I do that?
Thanks
Hi,
Unfortunately theme doesn’t have an option to change social buttons like that. If you want to remove the text from post social share please delete it from this file: http://screencast.com/t/Ta4bMb8YiD and use this css code to make in Theme Panel > Custom Css: http://screencast.com/t/ekSn2bDeBz
Note that this css is only for bottom buttons!
.td-post-sharing-bottom .td-social-sharing-buttons{
height: 50px;
}
.td-post-sharing-bottom .td-sp-facebook {
width: 100px;
background-position: 20px -15px !important;
}
.td-post-sharing-bottom .td-sp-twitter{
width: 100px;
background-position: 20px -430px !important;
}
.td-post-sharing-bottom .td-sp-googleplus{
width: 52px;
background-position: -10px -272px;
}
.td-post-sharing-bottom .td-sp-pinterest{
width: 52px;
background-position: -10px -65px;
}
Also I think that a plugin for social share will help, so social buttons to look like you need.
Hope this helps!
Hi,
If you want full menu please use header style 8: http://screencast.com/t/HUU9eY9qd0
Result: http://screencast.com/t/zACcjiaPwijf
Also if you don’t want top menu you can disable it from here: http://screencast.com/t/crIqFNZNYb
Thanks!
Hi,
You can make these changes from Theme Panel > Theme Colors: http://screencast.com/t/f4C82FggpZ
Thanks!
I successfully removed the lines on the single post page by changing the color to white, except for the line on the right; I couldn’t find the css class for it: http://tinypic.com/r/dwz0r8/8
Secondly, how do I get rid of the single post page pinterest social icon and replace it with an email icon so visitors can share posts via email?
I put some codes in the custom css section under the theme panel; will the recent theme update remove the codes? Do I need to copy it somewhere before making the theme update?
Thanks
Hi,
Please try this css for right border on posts: http://screencast.com/t/0tbHNTbi5aaV
.single .td-container-border:after{
background-color: white;
}
You can replace pinterest social button with your button here: http://screencast.com/t/0k7uhHTN – http://screencast.com/t/YYbPxKzH
When you update the theme Theme Panel customizations should not be deleted(only theme’s files modifications) but if you want to be sure you can make a backup anyway.
Thanks!
I updated the theme and got a few issues. I got a message to update the tagDiv social counter Plugin and this message is displayed both on my website and the wp dashboard:
http://tinypic.com/r/2zggqhh/8
http://tinypic.com/r/33a70n8/8
Yet there’s no way I can update it in the wp plugin section:
http://tinypic.com/r/2dj2scj/8
Hi,
You can find Social Counter in /plugins from theme files that you download from themeforest and you can update it like the Visual Composer is updated: https://forum.tagdiv.com/how-to-update-visual-composer-plugin-wpbakery/
Hope this helps!
Hi,
I modified the social icons for my website, and it looks great on desktops and large screen devices, and smartphones(in landscape position). However on smartphones in portrait position, the faceboook and twitter icons are too big. How can I adjust the size of the facebook and twitter icons to be just like the google+ icon (see http://tinypic.com/r/5zmwrb/8 ). I know it has something to do with using @ to specify for screensize in css, but I don’t know how to go about it.
Thanks in advance
Hi,
Try to use this custom css for mobile screens(this code is applying on default share button – without css customization): http://screencast.com/t/7mrc9umFkkpZ
@media (max-width: 767px){
.td-social-sharing-buttons .td-social-but-text {
display: none;
}
}
And use also for your created css media queries so the above css will apply for mobiles and you customizations it will apply from that screen size.
@media (min-width: 768px){
your code
}
Thanks!
-
This reply was modified 11 years by
Alin [tagDiv].
hi,
i’m using block 3 for my homepage and want to know how to remove the author name here: http://tinypic.com/r/2mr7att/8
Thanks
Hi,
If you want to remove author only for your homepage block please try this custom css in Theme Panel > Custom Css:
.home .td_block_3 .td-post-author-name {
display: none;
}
Or if you to remove the author from all pages that use block 3 or module 1 please comment this line here: http://screencast.com/t/BqxA2gyWwZz
Thanks!
Thanks for that solution. How do I apply it to the big grid on the homepage too? http://tinypic.com/r/msnifb/8
Hi,
Try this css code to hide author on big grid:
.home .td_block_big_grid .td-post-author-name {
display: none;
}
Thanks!