No search results were found in Documentation!
Using header styles with dark background, my uploaded logo always has a white border around it. Also, when I use a png logo with transparent background, the whole logo just shows white. How can I fix this? thanks
Can I add the sticky logo to Header Style 2 (logo appears on menu after scroll down)
Hi,
Logo resize works.
But when scroll down, the logo size changed. How do I change the logo size for that as well?
Thanks.
-
This reply was modified 10 years by
temp2escape.
Hello My friend thank you for your instructions!!!! EXCELENT
they were super precise.
More, I expressed myself badly in the previous message
I’m sorry my friend!!!!
Here I would like to know how to change the size of the logo footer?
for:
width: 187px;
height: 150px;
once again thank you
Aldemi
As in this image, how to add and image/little banner (220x80px) at one side of the logo, on header style 7?
Fz
Likely hire a programmer to build an “app” from your website. Many simple apps are basically shells with logo and pull in the content via RSS. Not too complicated.
No recommendation, however we’re looking to do the same thing … so also interested if anybody has already done this on the cheap 🙂
Hello and thank you for purchasing our theme and thank you for your kind words.
1- Please provide more details to how you want the top ad to be positioned. I assume you want it moved a bit to the right. You can use this css code for it:
.td-header-style-1 .td-header-sp-recs {
margin: 50px 0 9px 63px!important;
}
You can place the code in the theme panel->custom css box.
2- For the footer i see you have many widgets added in the footer 3 area: http://screencast.com/t/Qpg9Zx7pW
The first 2 footer styles from the theme panel come with predefined content that cannot be removed. You can use another footer style that has no demo content and then use the 3 footer widgets to add your own content. You can read more about footers in our documentation here: https://forum.tagdiv.com/footer-templates/
3- You can use this custom css code to adjust the width and height of the logo:
.td-header-style-1 .td-header-sp-logo {
width: 160px;
height: 120px;
The default header style will crop your logo for it to fit with the ad next to it. If you want the theme to display the logo exactly as the dimensions you upload, you will need to use a header style that supports ‘full logo’ : https://forum.tagdiv.com/header-styles/
4- You can add a hover effect with css as the theme has no option for it. Please use this code:
.footer-logo-wrap img:hover{
opacity:0.5;
}
Thank you!
Catalin – I’ve commented out the header logo and menu code. But 404 page still displays a gradient line.
Please visit this page http://www.viralbae.com/hdkfahlkdhadfa
Kindly advice.
Good morning my friends
I’m having some simple problems configuring the css
I’m not being capable to make some alterations
I need a force of You!!
the problems are:
1 – How move the block ADS to adjust the right ,
to get away from the logo in top menu ?
2 – How Adjusting the footer menu, which is very large and deconfigured ?
3 – How to reduce a little the size of the logo
to 261x208px ?
and – How Inserting the hover effect on the logo footer?
PLEASE LOOK MY SITE : http://www.euclidense.com/
Honestly I’m loving this theme!!!!
it is very easy to use, intuitive, modern, super powerful!
I believe I will buy three more of the same theme
to replace the Themes of Multinews, which is a difficult use of terror and the super old design
The Newspaper is FANTASTIC splendid
thank you for providing us with this wonderful theme
I’m sorry, I know not speak English
Hi !
is there a solution to put the background under the menu and logo ? like that : http://www.leparisien.fr
My website : http://www.golfnews.fr
Actually i uses this custom css :
.td-boxed-layout #td-outer-wrap{
top: 136px;
}
#outer-wrap {
max-width: 1172px;
margin: 0 auto;
}
#outer-wrap { top: 136px; }
#inner-wrap {
border:1px solid black
}
Thanks !
Romain.
Hello,
You can see the list of header styles: https://forum.tagdiv.com/header-styles/
You can use header style 9 of you wish and simply use a float left on the logo.
It is difficult to create a full logo template aligned left and the ad on the right. People use different logos and the ad will fall under the logo if the logo will be too big. We had to limit the logo in some way so the ad would keep it’s position.
Thank you for your understanding.
Hello,
I tried to hide logo and menu with the following code
.page-id-1098 .td-banner-wrap-full.td-logo-wrap-full{
display:none !important;
}
but it is still creating a flicker(Logo is loaded initially and then disappears)
So I’m looking to comment those lines in core theme files so that I’d get desired output.
Please can you help, thanks.
In the next update is there no way you can do a full size logo aligned left and menu aligned left like on the old theme please
I want to modify the default header, it is the one I prefer but the logo is too small. I want the default header with a full size logo of “535 x 97” – how do I do this because whenever I adjust the size of the logo in the css it makes the padding of the header with huge white spaces round it.
Hello aldemi,
Please try the code below and place it in Theme panel->Custom Css area like this: http://screencast.com/t/zJ8Ir3xFz
.td-header-style-1 .td-header-sp-logo {
width:187px;
height: 150px;
}
.td-header-style-1 .td-header-sp-logo img {
max-height: 150px;
}
.td-header-sp-logo a:hover {
opacity: 0.8;
}
The result you should see here: http://screencast.com/t/SGoRcKfIMBvw
If is not what you mean, please provide more information about this.
Hope this helps and let us know how it goes!
Thank you!
Hello @PierreBoullier,
If you want to achieve a different header logo on your page, it is necessary to add a set of conditions in header-style file and load a different logo image for each page. Below, I gave you an example for header_style_7.
This code should load a different logo image for the pages but only when header style 7 it’s used. If you change the header style you need to apply the customization in the file corresponding with the header style used. Look here: http://screencast.com/t/jSTSxWh2xdl – http://screencast.com/t/girlnlQWHzE
<?php
if (is_page('PAGE-ID')){
echo '<img src="url image 1">';
}
else {
locate_template('parts/header/logo.php', true);
}
?>
Also, @szmarinov if you want to add a different logo for each category, you have to replace in code above the function is_page with is_category like this: http://screencast.com/t/RDofG5R4YL – http://screencast.com/t/oIF2jUCn
<?php
if (is_category('CATEG ID')){
echo '<img src="url image 1">';
}
elseif (is_category('CATEG ID')){
echo '<img src="url image 2">';
}
else {
locate_template('parts/header/logo.php', true);
}
?>
For more information about function Reference you should see here: https://codex.wordpress.org/Function_Reference/is_page
Hope this helps and let us know how it goes!
Thank you for the message!
Hey,
today I have now updated my WordPress. I wanted to edit my page with Visual Composer (WP- text), but the logo of VC is in a loading loop. Do you have advice or a solution?
ps: delete and new-install with downloaded theme is not working
cheers
Good morning TagDIV
I bought the newspaper theme, and I’m very pleased with the design and the ease configuration
congratulations
However, I realized that there is a limit on the logo size that is 90px
I would like to change the logo size to 187x150px
which is the size of the logo of my website. it is possible?
my theme is the default – theme 1
1 – however I would only be changed to the desktop
for other devices (mobile, tablet, etc.), were not changed the size of the logo
remaining without alteration
changing the size of the logo?
2 – how to insert an effect “fade” in my logo,
for when I hovering the mouse over my logo, becomes transparent / opaque
thank you so much
Aldemi Oliveira
euclidense.com
Hi, guys!
I have similar question and im seeking possible solution. Is it possible to add different logo for each specific category? And also create different design for each category. Such as different frames borders, styles. Thank you in advance!
No problem @Catalin-l
So here is the logo header I want to appear on all pages of my website : http://pasteboard.co/2Ew9rL1g.jpg
Except on this page, where I want to chose a different logo header : http://pasteboard.co/2Ew8iX5l.jpg
Hox could I upload a different header to this page but keep the same 1st header on all other pages ?
Hope you understand, I can provide more screenshots if it’s unclear.
Thank you very much,
Pierre Boullier
Hello, I just bough the Newsmag theme, but the theme panel is not showing well, thus I cannot add logo, set the categories and others because they are not clickable.
Anyone with solution pls.
Hi All,
I have three Menus : TopBar, Header Menu and Footer Menu.
Header Menu is Main Menu.
I’ve selected : ‘Smart snap (always)’ option, under ‘Sticky Menu’.
I’ve selected : ‘Header logo’ option, under ‘Logo on sticky menu’
In a particular post, I have three anchor links within the post. I’m using ‘Easy Smooth Scroll Links’ plugin ( https://wordpress.org/plugins/easy-smooth-scroll-links/ ) to create anchor links.
Here’s the observed behavior:
1> When the page/post is loaded first time and I click on any anchor link, I am taken to right place on the page/post. The ‘Header Menu’ doesn’t show up until I start scrolling up. This is expected behavior.
2> But after this, I’m facing the following problem, if I click again on any anchor link :
a> the ‘Header Menu’ with ‘Logo’ disabled shows up, even without scrolling the post/page (Header Menu shouldn’t show up till I scroll up and I’ve chosen Header Menu with Logo).
Scenario 1:
step 1> if I scroll down ‘Header Menu’ stays with ‘Logo’ disabled.
step 2> if I scroll up ‘Header Menu’ hides for 3-4 scrolls and resurfaces again with ‘Logo’ disabled and stays till the top of the webpage.
step 3> if I scroll down any time after ‘step 2’, ‘Header Menu’ hides and if I scroll up again, ‘Header Menu’ shows up but this time it shows up WITH ‘Header Logo’.
Scenario 2:
step 1> if I scroll up ‘Header Menu’ disappears after one scroll, but resurfaces after 3 scrolls.
step 2> if I scroll down any time after ‘step 1’, ‘Header Menu’ hides and if I scroll up again, ‘Header Menu’ shows up but this time it shows up WITH ‘Header Logo’.
This behavior is seen only on Desktop version. It works perfectly as expected on Mobile versions.
I’ve tested it on Mozilla Firefox and Chrome, both latest versions.
Can you please look into this and update about the same at the earliest.
Best,
Just bought the Newspaper theme – great job!
Minor problem at http://www.dcextendedmultiverse.com/. Everything seems to work fine, except the search on the header. When you click on the magnifying glass so the Ajax search drops down, it works fine with the default theme settings. I had AdSense for Search in there so that the drop-down displays the Google Search Box, but it stopped working with the upgrade.
It looks fine, but when you click in the search field, it triggers something that makes the search box instantly vanish before a user can input their query.
The AdSense for Search works fine when I put it in the sidebar, so I’ve included one so you may see what the intended result is. I just don’t know why I’ve run into this problem all-of-a-sudden.
From “parts/header/header-menu.php”, I simply removed:
<input id="td-header-search" type="text" value="<?php echo get_search_query(); ?>" name="s" autocomplete="off" /><input class="wpb_button wpb_btn-inverse btn" type="submit" id="td-header-search-top" value="<?php _etd('Search', TD_THEME_NAME)?>" />
… and replaced it with:
<style type="text/css">
@import url(//www.google.com/cse/api/branding.css);
</style>
<div class="cse-branding-bottom" style="background-color:#FFFFFF;color:#000000">
<div class="cse-branding-form">
<form action="http://www.dcextendedmultiverse.com/search-results/" id="cse-search-box">
<div>
<input type="hidden" name="cx" value="partner-pub-XXXXXXXXXXXXX" />
<input type="hidden" name="cof" value="FORID:10" />
<input type="hidden" name="ie" value="UTF-8" />
<input type="text" name="q" size="15" />
<input type="submit" name="sa" value="Search" />
</div>
</form>
</div>
<div class="cse-branding-logo">

</div>
<div class="cse-branding-text">
Custom Search
</div>
</div>
Any help would be enormously appreciated.
Hi
1. Try this css in theme panel > custom code > custom css: http://screencast.com/t/R8bZO3DKmcu
.td-post-content ul{
list-style-position: outside;
}
2. You can change the background color for the header from theme panel > theme colors: http://screencast.com/t/Dp3b7MS00tI5
The logo size depends by the header style used. With some header styles the logo it’s full width and with others have a limited size because it’s placed near the header ad. You can find more details about this in our documentation: https://forum.tagdiv.com/newsmag-logo-favicon/
If this is not what you mean please provide more details about this.
Thanks!
How to center the logo in the header (ad should appears above it)?
