- NewsmagtagDiv Composer Tutorial
- NewsmagBlock settings tutorial
- NewsmagLogo & Favicon
- NewsmagFooter templates
- NewsmagUsing other ads
- NewsmagUsing Typekit fonts
Thanks for the response!
I am actually using Block 5 to display the latest sneaker news on my homepage. Also, I did notice that I can go into the Block Settings but all I can do there is change the pagination type. However, what I wanted to do is keep my pagination type (infinity load), but change the look of it like on http://sneakerbardetroit.com with a black background and red hover. So is there any custom CSS code you can give me to do that? Thanks!
I have tried using 2 different calendar plugins and settled with EventOn but this problem happened with both so think it may be something with the newspaper 7 theme and not individual plug. When placed in youtube video (tried just pasting URL, embedding and iframe and happens to all three) the video comes in the wrong size — the width is correct but the height is VERY small. If I click the video to play fullscreen and then reduce it back down the video is correct size. When I emailed EventOn to see if something is up with their plugin they stated:
“The height of videos is defined in the plugin’s CSS file. Probably your theme’s rules overwrite it.”
Since this happens in two different plugins I was checking to see if something on newspaper 7 end is makeing the video not show properly.
Also, try as I might, where in the css do you change the drop down menu color to another color besides white?
Thanks for the help.
Thank you. My child theme only contains functions.php and style.css
functions.php
(<?php
/* ----------------------------------------------------------------------------
Newspaper 7 Child theme - Please do not use this child theme with older versions of Newspaper Theme
What can be overwritten via the child theme:
- everything from /parts folder
- all the loops (loop.php loop-single-1.php) etc
- the rest of the theme has to be modified via the theme api:
https://forum.tagdiv.com/the-theme-api/
*/
/* ----------------------------------------------------------------------------
add the parent style + style.css from this folder
*/
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles', 1001);
function theme_enqueue_styles() {
wp_enqueue_style('td-theme', get_template_directory_uri() . '/style.css', '', TD_THEME_VERSION . 'c' , 'all' );
wp_enqueue_style('td-theme-child', get_stylesheet_directory_uri() . '/style.css', array('td-theme'), TD_THEME_VERSION . 'c', 'all' );
}
Thank you very much. This solves the issue. The mystery why the two issues described here were present and required custom CSS remains. I hope the developers read this convo.
Regards,
Peter
I was looking for a way to change the hover color of the Instagram FA icon in the footer because all the icons appear to be very similar shades of blue. Since Instagram changed their app icon, I wanted to make the colored square that appears behind the icon on hover this color: 9933ff
I tried adding the code into Custom CSS, but I think because there’s a color set for the icon in the theme’s CSS that the custom code isn’t working. I went into “style.css” and thought I got it all changed, but the hover color is still blue.
And now I’ve noticed that instead of the social icons in the header turning their respective colors on hover, they all turn orange now, which is the color associated with the custom social icon I added and styled via custom CSS.
Anyone have any idea how I can get this little situation fixed?
Thanks, not what I wanted due to the fact it has to use the boxed version however just used Inspect element to find what code to change and put it in Custom CSS. Thanks anyway =)
Hi,
This is strange but try to add this code in Theme panem->Custom Css and see if it works for you
.single .td-post-featured-image {
pointer-events: none;
}
Thanks
Hi Catalin
Thanks for this! Have added that code to custom CSS, but it doesn’t seem to change the font size?
Also any idea on the More From Author Box not showing up on blog posts (except the Iceland one?)
Many thanks!
Lauren
I have now on the page: http://www.gamesary.com/ a big problem. The dropdown menus have a bug.
Do you can help me?
In the CSS Class i have written: fa fa-newspaper-o (for example)
Hi,
You can try this code, just enter it in Theme Panel->Custom Css
.td-post-source-via .td-post-small-box {
display: inline-block;
padding-right: 5px;
}
Result with code added – http://screencast.com/t/cAhpD29APL7q
Thanks
Hi Bogdan,
I’m scratching my head a little now with Speed Booster.
I understand that I have additional Plug Ins and what I need to do to add these to the compatibility list (as explained here https://forum.tagdiv.com/how-to-make-the-site-faster/ )
However, when I look at the code in the Plug In I see this…
if ($this->is_ie === false) {
// move style.css theme style
$this->move_style_to_footer_queue(‘js_composer_front’);
$this->move_style_to_footer_queue(‘td-theme’); //this is the main style of the theme. It’s only moved on Newspaper 6!
$this->move_style_to_footer_queue(‘td-theme-woo’); //this is the main style of the theme. It’s only moved on Newspaper 6!
}
So what about NewsPaper 7?
I’m really confused!
The only plug ins I am using are;
Ninja Forms
Word fence
Toast
The website is http://www.expectationsholidays.co.uk
Any ideas?
Thanks 🙂
Hi, I have two question.
1. How I can change?
I want it from
Via: Text
Source: Text
to
Via: Text Source: Text
2. How I can change the CSS from the Via and Source Text?
Thanks 🙂
Hi,
It seems that due to some modifications the Block title font has a size of 20px which is making get cutoff because of the overflow property. You should lower the font-size to 19px and it will look good, or try this code in Theme panel->Custom Css that makes it just 1px smaller
.block-title > span {
font-size: 19px;
}
Thanks
Hello fachruljody,
If you want to change the menu button to “MENU” you should use a bit of CSS code to do that. Try the code below and place it in Theme panel->Custom CSS Area.
.td-icon-mobile:before {
content: '\MENU';
}
The result is here -> http://screencast.com/t/HTdJhGAdjKIz
Thanks for the message!
Hello roqeem,
In order to remove more from author you can use 2 methods:
The css method:
.td_block_related_posts .td-related-right {
display:none;
}
or you can edit the theme files: comment out or delete this part: http://screencast.com/t/Okmq7lxTDzGd
For your second request, if you want to change the background-color for the Related Articles tab you should use the code below and place it in Theme panel->Custom CSS area.
.td-related-title .td-cur-simple-item {
background-color: red;
}
The result you should see here -> http://screencast.com/t/mKqMSHeV
Thank you!
If you plan on customizing things, you should create a subdomain for testing purposes so you will not run tests on your live site. Trial and error is the best way to do it.
The code you mention should not affect the theme layout in any way breaking the site. the width is specified to be 100% so it will not go beyond the theme layout. Unfortunately it will affect all tables on your site so you should really consider using classes for your html tags so you can target them separately with css.
Thank you!
Hello awtown,
If you want to remove the page title you should use a bit of CSS code to do that. Try the code below and place it in Theme panel->Custom CSS area.
The code is ->
.td-page-title{
display:none;
}
Also, if you want to hide the page title for a specific page you should use the page ID class at the front of the code, like this ->
.page-id-164 .td-page-title{
display:none;
}
-> http://screencast.com/t/GOmFghK8PFl
Thanks for the message!
The code is provided in the previous reply.
.td-grid-style-4 .entry-title {
background-color: red;
}
Use this code in the theme panel->custom css box. In the code you see this line:
background-color: red; I think it;s self explanatory what it does. It changes the background color to red. Change the word red with your preferred color using the css colors.
Thank you!
Hello awtown,
Unfortunately, please notice that our product does not have such an option for dynamic width and we do not recommend to do that through the custom CSS code because the layout of the theme will be damaged. If you want to change the width of the theme to be in full-width mode, please notice that is not a simple task and you will have to adjust the entire theme to the new width for better results.
If you want to display more levels in our theme and you are not aware of the steps in this regard, please consider hiring a freelancer/developer to do this for you because we cannot provide customization services at the moment, sorry!
Thanks for your understanding!
Hello laurena86,
I have checked your website, and I saw that you had increased the font size for Related Articles and More from Author button. Try to use a bit of CSS code to decrease it for mobile mode because that’s why to appear unproperly.
The code is ->
@media(max-width:767px){.td-related-title .td-related-left, .td-related-title .td-related-right{
font-size: 19px;
}
}
Thanks for your understanding!
Hi,
The call to action for “Read more” comes from the td_module_18 – http://screencast.com/t/t4gfyGBCmTRa but it would be dificult to replace it with a custom button. You can try a different way to customize that link using css, to make it look like a button (enter it in Theme Panel->Custom Css)
.td_module_18 .td-read-more a {
background-color: lightblue!important;
color: white;
border: 1px solid transparent;
border-radius: 25px;
transition: all .5s;
padding: 5px 10px;
font-size: 12px;
font-weight: 600;
line-height: 1.5;
}
It looks like this – http://screencast.com/t/RRiuvhmLbw
You can edit the colors as you like to make it look the way you want
Also if you want to hide the arrow next to the text u can use this code
.td_module_18 .td-read-more a i {
display: none;
}
Thanks
Hello,
The demo-style.css is the only file getting loaded. The rest are loaded through the theme pane and medi library. A demo is mostly css as it does not change the theme functionality, just it;s style.
You can load a demo only from the theme demo section: https://forum.tagdiv.com/installing-demos/ You cannot load it any other way. If you want to save the theme settings you can export them like so: https://forum.tagdiv.com/import-export-theme-settings/
We did not test this switch you mention so there is no simple solution I can provide. Sorry. In order to create a custom code that can do that you will have to inspect this file to see how a demo is being loaded:
http://screencast.com/t/DdRU1c6pmEm
Thanks.
I have a PHP script that has already been customized to match my old design, but now that I am moving to Newsmag I need the CSS and template files customized to match it. It only took 15 minutes for my friend to do it last time, but he isn’t available and now this has caused me to be delayed weeks.
I would be willing to pay anything, preferably to TagDiv directly, it really should be an easy job, I just need it to be responsive and look perfect. Please reply here with your contact info or message me. I would be willing to pay very handsomely if somehow someone could help me with this right away.
Please disregard. I used a different demo and the problem is no longer there. This achieves the results (and some other things as well). I suppose it was something in the CSS and is by design (not a bug).
Please mark as resolved.
Hi @Bogdan,
I only need to know what are the theme files being loaded when I install Black or Default demo theme? with no content. Just the files(css? shortcodes?) I saw only these file “/demos/black/demo_style.css”

I tried removing it via chrome developer tools debugger and it turned out fine? I believe i already have the default when i remove the demo_style from the page. But still these are my challenges:
1.) Aside from demo_style.css are there any file I should modify/remove/add? I’m already fine with header and footer(but it would be better if I’ll know how to switch them too)
2.) How can I save the setting?(I believe I can set cookies but is there a function/method I can invoke?) just to load the Default Newspaper style
On press of a button, it will switch Black Newspaper Demo style to Default Newspaper Style and vice-versa that’s what I only want to achieve. And maybe some of the users might benefit from these. This will give the readers an option to choose for their theme preference.
Thanks a lot!
-
This reply was modified 9 years by
rjdtramirez. Reason: Update