- NewsmagLogo & Favicon
- NewsmagWhat’s included in Newsmag theme package
- NewsmagMain menu
- NewsmagHeader styles
- NewsmagFooter templates
- NewsmagTheme colors introduction
Put this in your custom CSS and choose your font. You might need to google the proper font name to use below for the desired font.
.td-logo-text {
font-family: "Open Sans", sans-serif !important;
}
.td-tagline-text {
font-family: "Open Sans", sans-serif !important;
}
The !important may not be required, but doesn’t hurt anything to have it there to be sure your custom settings are used, instead of defaults.
Selecting a google font should work since it’s included in the theme, but you might have to make sure you use the chosen font in at least one spot on the Theme Fonts settings panel to get it loaded smoothly by the theme.
Hello Team,
I would like to keep the Text logo and the tagline on my website (style 10) but I wish to change the font. Ideally, I would like to use a google font.
What to change, and what is the best way to procede? My website is available at this adress : http://www.regardnomade.com
Thanks.
Vincent.
Hi,
You can use Header style 8 to have also Logo in the main menu: http://screencast.com/t/s4LZClYlAzQL – http://screencast.com/t/Jh6Hh7AtzkV4
Hope this helps!
Hi there i have seen a few website which use your Newspaper Theme with a personalized logo on the main menu bar (not the House or the cubes) and i was wondering how they have done that.
Thanks in advance
Hi,
Please use a header style with full width logo(Style 3 and 6): https://forum.tagdiv.com/header/
Also please follow our documentation(it may help): https://forum.tagdiv.com/newspaper-documentation/ and let me know if you still have any issues related to the theme.
Thanks!
Hello Tagdiv support team, i just would like to ask you how can i increase the width of the logo to more than 300px. Could you please tell me the right css code to use?
Thanx in advice
Filippo
B2 Studio
Hi,
This issue appears because you use Header style 3 with blog stack. For Classic Block stack we made a special header, this one http://screencast.com/t/FEoXVhLMpcv and in combination with other headers is not guaranteed that everything will work fine.
So it is better to change the header if you use blog stack, but also if you want to use it like this you can try this custom css in Theme Panel > Custom Css: http://screencast.com/t/gHftD9jg3R
@media (max-width: 767px) {
#td-top-menu .sf-menu {
display: none !important;
}
.blog-stack #td-top-search{
right: -50px;
top: -75px;
}
.header-search-wrap .dropdown-menu {
left: -56px!important;
}
.header-style-3 .td-logo img{
width: 30px;
}
}
Thanks!
thank you very much. I found at the end
wp-content/themes/Newspaper/includes/widgets/td_footer_logo_widget.php
I have edited necessary places.

Hi,
The footer logo is added with logo widget. I don’t know exactly what your are trying to do, the logo is resizing automatically(till 100%) when you change footer layout from Theme Panel: http://screencast.com/t/57hXHOo41Gm – http://screencast.com/t/NO3V0wDea
I have checked your site and it looks fine and the image is at maximum size – http://screencast.com/t/lc5rnoqoLLaX
When you are using footer on 3 columns layout the max width for your logo image is 326px: http://screencast.com/t/PjuhPWIiX
Hope this helps!
Hi,
Please edit you header style file and add a div with your logo image like this: http://screencast.com/t/Bd731Jokkn
And add some css code in Theme Panel: http://screencast.com/t/S6drJO1XY5vw
.yourclass{
float: right;
}
Also if you want to hide it on mobile please use this custom css:
@media (max-width: 767px){
.yourclass{
display: none;
}
}
Hope this helps!
On my website http://www.estambul.net I am using both header and footer logo but i see that footer logo is without width and height statements.
where i can add these?
Thanks
Hi,
You can change footer logo, text from Theme Panel > Footer: http://screencast.com/t/q7Xg7iYgvEb
Also please make sure that you have installed Social Counter plugin from the theme’s files /plugins folder and activate it: http://screencast.com/t/inV38FNCT – http://screencast.com/t/cctgmhQBk
Our guide may be useful: forum.tagdiv.com/newsmag-documentation/
Hope this helps!
Hi,
I want to put my “Partner von Fabalista” Logo below the header ad like you see on this photoshop-montage:
http://dev.promicabana.de/wp-content/uploads/logo.jpg
Can you tell me please how I can do this?
Thank you guys! 🙂
first sorry for my bad (so much bad!) english
1- mobile phone search button and logo problem (i test motorola atrix, but looks great iphone)
(i return to Version 1.6 and fix this)

2- very slowly images (today bounce rate %82)
3- custom ad 3 problem i add adsense codes, but everytime auto removed. (maximum 2-3 hour)
I search on widget but not found [tagDiv] Footer logo….and no [tagDiv] Social counter
oh… maybe this …
https://forum.tagdiv.com/topic/no-predefined-content-section/
sorry don’t have better answer
I think the plugin link at end might be best choice?
let me know what solution you end up with … I need to still do this myself! Been too busy with fixing my logos and fonts …
Hello,
I already added the code but the theme still showing the banner in single page. Any idea to fix this little issue?
The URL is: /wp-content/themes/Newsmag/parts/header/header-style-2.php
<div class=”td-header-container td-header-wrap td-header-style-2″>
<div class=”td-header-row td-header-top-menu”>
<?php locate_template(‘parts/header/top-menu.php’, true); ?>
<?php locate_template(‘parts/header/top-widget.php’, true); ?>
</div>
<div class=”td-header-row td-header-header”>
<div class=”td-header-sp-logo”>
<?php locate_template(‘parts/header/logo.php’, true);?>
</div>
<div class=”td-header-sp-ads”>
<?php if (! is_single()){
locate_template(‘parts/header/ads.php’, true);
}?>
</div>
</div>
<div class=”td-header-menu-wrap”>
<div class=”td-header-row td-header-border td-header-main-menu”>
<?php locate_template(‘parts/header/header-menu.php’, true);?>
</div>
</div>
</div>
I just tried that and it helps, but it still needs some improvement.
The logo is kind of shrunk with the 48px height, and I also need some padding above and below the logo.
How can I increase the the height of the menu area on mobile view? I can play with the height and the padding to make the logo sit nicely.
Thanks!
Hi,
Use the following css to fix it: http://screencast.com/t/jN84piGSA
@media (max-width: 767px) {
.header-style-3 .td-logo img {
top: 1px !important;
max-height: 48px !important;
max-width: 130px !important;
}
.header-style-3 .td-logo img {
padding-top: 0px !important;
padding-bottom: 0px !important;
}
}
Thanks
Hi, I have added a logo which measures 400x179px.
I have also added this piece of code on the Custom CSS panel to get some padding.
.header-style-3 .td-logo img {
padding-top: 30px;
padding-bottom: 20px;
}
The problem is: In responsive mode, the logo overlaps with the menu line and the slider beneath it. Please note that the problem persists even If I remove the above CSS code which I have mentioned.
The site is at: culinarycafe.manifesto.co.in
I think I would be ok if I can control the height of the menu area, and the size of the logo, while on responsive mode.
Please give me some ideas on how to do this.
Thanks.
Hello again,
I’m using Header Style #2, the file is header-style-2.php and i made te modifications but doesn’t work fo rme, please check the entire code:
<div class=”td-header-container td-header-wrap td-header-style-2″>
<div class=”td-header-row td-header-top-menu”>
<?php locate_template(‘parts/header/top-menu.php’, true); ?>
<?php locate_template(‘parts/header/top-widget.php’, true); ?>
</div>
<div class=”td-header-row td-header-header”>
<div class=”td-header-sp-logo”>
<?php locate_template(‘parts/header/logo.php’, true);?>
</div>
<div class=”td-header-sp-ads”>
<?php if (! is_single()){
locate_template(‘parts/header/ads.php’, true);
}?>
</div>
</div>
<div class=”td-header-menu-wrap”>
<div class=”td-header-row td-header-border td-header-main-menu”>
<?php locate_template(‘parts/header/header-menu.php’, true);?>
</div>
</div>
</div>
I need to disable the header ad in the post pages, i hope you can help me,
Thanks
Hi there
I’m still getting a hard crop on the thumb of the featured img on the homepage (http://frontline-ireland.com/ – Cope Foundation logo) I’ve altered the functions.php
//small height, 1 col wide
add_image_size('art-wide', 326, 159, false); from true to false & that seemed to work after regenerating the tumbnails but obviously its reverted
Thanks Niall
Hi,
You can try to add a background image on header style 3 using this css: http://screencast.com/t/VMTH3rPr
But if you change some settings like adding a site background you will need more custom modifications so if you don’t have basic knowledge you can hire a professional to do this for you.
.header-style-3 .td-full-logo{
background-color: transparent;
}
.td-full-layout .td-header-bg{
background-image: url("http://www.backgroundzs.com/static/images/desktop-backgrounds1.jpg");
}
Hope this helps!
Hi,
Please use a header style that allows you to use full logo image: http://screencast.com/t/8epUnqn58C If you already use it please provide your site url.
Thanks!
Also working on rescuing my music magazine site, which went online 10 years ago (!).
http://musewire.com
It was very much neglected the past 2 years for various reasons. Coming back from zombie land using Newsmag!
just pulled off a massively tricky domain name change for a WordPress site; changing the domain from MusicIndustryNewswire-dot-com to MuseWire-dotcom … that was a major pain in the butt!
Still working on logo sizes, and other clean up. Really a pain to do search/replaces for 10 years worth of a site name within the content an excerpts! (say hello to phpmyadmin, my little friend….) 🙂
-
This reply was modified 11 years by
simchris.