Search Results for 'logo'

    No search results were found in Documentation!

Results from the Forum
Calin
tagDiv Staff

Hi,

For the moment is not possible to have multi headers, how you want.
Set the code
https://pastebin.com/q6MRbDQw
in header style 10
https://www.screencast.com/t/EhdvToo75GN
results : https://www.screencast.com/t/bKuW2GIj

.home .td-header-sp-logo a:nth-child(2),
.td-header-sp-logo a:nth-child(1)
{
  display: none;
}
.td-header-sp-logo a:nth-child(2),
.home .td-header-sp-logo a:nth-child(1)
{
  display: block;
}
.td-header-sp-logo a:nth-child(2){
    padding-top: 20px;
}

https://www.screencast.com/t/ZjHlVqObCV

Thank you for your understanding..

  • This reply was modified 7 years by Calin.
  • This reply was modified 7 years by Calin.
  • This reply was modified 7 years by Calin.
  • This reply was modified 7 years by Calin.
  • This reply was modified 7 years by Calin.
  • This reply was modified 7 years by Calin.
Simion C.
tagDiv Staff

Hi,

Some header styles cannot display a larger logo, they have specified logo sizes which should be used for the best results
https://forum.tagdiv.com/header-styles/
https://forum.tagdiv.com/logo-favicon/

The exceptions are header styles 9, 10 and 11. These header styles can display the logo you set in it’s full size. For example this theme demo uses header style 10 and quite a large logo image
https://demo.tagdiv.com/newspaper_cars/

So you could use on of the mentioned header styles, which can display a larger logo size. Let us know if you have more questions.

Thanks

TheZugzwangBlog
tagDiv Member

Hello,
What I wanted to say is that I would like the logo to redirect to an external url. I have changed the URL in the log-h1.php and logo.php files but it does not work.
Sorry for the translation error.
Thank you

Simion C.
tagDiv Staff

Hi,

Our AMP plugin does not have a menu at the moment. Most of the design for AMP has been inspired from the Yoast SEO website, example
https://yoast.com/social-media-optimization-with-yoast-seo/amp/
Maybe a menu will be included in the future, can’t say for sure what will happen.

The logo that will be displayed in AMP pages is the one set for mobile, in the theme panel
https://www.screencast.com/t/JrPIPhOhv

Thanks

Catalin
tagDiv Staff

Hello bagginstim,

You should add the stripslashes
for the both logo like this -> https://www.screencast.com/t/BTAH1XOJJOho -> https://www.screencast.com/t/GVn1NwjhR5X until we will fix it in near future updates.

Thanks for your understanding!

Catalin
tagDiv Staff

Hello,

Please notice that’s the main functionality for the logo. I have inspected your website and the logo seems to work as expected.

Thanks for your understanding!

Calin
tagDiv Staff

Hi,

Unfortunately for the moment there is no option to have different menus in our theme, what you can do is to hide with css the logo ( “hero ” from menu ) from pages and posts, and show it only in home page .
Or you can add in file theme another image and hide in on home page and show the logo, and hide the logo in show the image set in file theme for thre rest of the website.
If you want to do one of this jut let me know, and I will quid you.

Thank you for your understanding.

arjun234
Participant
#0

If I try and edit my homepage with newspaper’s page editor, I get redirected to an error 503 page

I also get the same error 503 page if i try and edit the footer.

The footer is currently showing the default logo, so anyone coming to my site sees the default logo instead of my brand

Amit
tagDiv Member

You must update the WP Home URL (WordPress Address (URL)) with the https:// version. This will surely solve the gallery issue.

To fix green lock issue, open theme panel, and check if the side logo, favicon, background URL has https in their URL REFER: http://prntscr.com/ljqsqt

Note: Things may break If you are using CloudFlare Free SSL on your website. You must configure it very carefully.

Hope this will help, thank you for your understanding.

jfumberg
Participant
#0

How can I make the logo to look bigger in the header?

thefrontlinewire
Participant
#0

Good Afternoon,

I recently installed the amp plugin for newspaper located in the theme panel. Is it possible to have a menu with the amp version of my site? Also my top logo is not visible either?

bagginstim
Participant
#0

Hi, going round in circles trying to sort this .. My text logo in header style 10 seems to add a backslash character when I add an apostophe. I’m using ‘classic blog’ theme. Any suggestions?
text in header layout 10

TheZugzwangBlog
Participant
#0

Hello! We’ve setup a newsletter archive using Newsmag, and our client would like their logo to link back to the main website, rather than the archive. I’m not sure where to change this in the core files.

I hace changed href in logo-h1-php but it doesnt work. Please see code below.
Thanks
P.D. This is my web: https://thezugzwangblog.com/

// 3. For any tdc or vc content, and not the ‘page-pagebuilder-title.php’ is used
$td_use_h1_logo = false;
if (is_home()) {
$td_use_h1_logo = true;
} else if (is_page()) {

global $post;
$_wp_page_template = get_post_meta($post->ID, ‘_wp_page_template’, true );

if (‘page-pagebuilder-title.php’ === $_wp_page_template) {
$td_use_h1_logo = false;
} else if (‘page-pagebuilder-latest.php’ === $_wp_page_template) {
$td_use_h1_logo = true;
} else if ( td_util::is_pagebuilder_content($post)) {
$td_use_h1_logo = true;
}
}

if (!empty($td_customLogoR)) { // if retina
if($td_use_h1_logo === true) {
echo ‘<h1 class=”td-logo”>’;
};
?>

” src=”<?php echo $td_customLogo?>” alt=”<?php echo

$td_logo_alt ?>”<?php echo $td_logo_title ?>/>
<span class=”td-visual-hidden”><?php bloginfo(‘name’); ?></span>

<?php
if($td_use_h1_logo === true) {
echo ‘</h1>’;
};
} else { // not retina
if (!empty($td_customLogo)) {
if($td_use_h1_logo === true) {
echo ‘<h1 class=”td-logo”>’;
};
?>

” alt=”<?php echo $td_logo_alt ?>”<?php echo $td_logo_title ?>/>
<span class=”td-visual-hidden”><?php bloginfo(‘name’); ?></span>

<?php
if($td_use_h1_logo === true) {
echo ‘</h1>’;
};
}
}

Thanks!

Calin
tagDiv Staff

Hi,

Here is the documentation for your header styles -> https://forum.tagdiv.com/header-styles/
You can set any size you want, we recommend to use 272 x 90px for the most of the header to fit well and look good, also a small logo will be load faster.

Thank you.

Simion C.
tagDiv Staff

Hi,

What exactly is this cover font you are mentioning? There are font settings in the theme panel for most elements.

In order for the logo to appear all that is required is to set one, in the theme panel
https://www.screencast.com/t/Udbc8weT
A logo can be set for the header and one for the footer. If you have set a logo and it does not appear, I could take a look.

Provide a link to the website, also mention for which element you want to change the font.

Thanks

isahtg
Participant
#0

Dear TagDiv team,

How can I change the cover font of my posts?
I could not find the right section wihtin the theme yet.
Furthermore, the logo of my website never appears when I am working on it within wordpress. Is there a solution for this? Do I have to activate anything else?

Thanks for your support and best wishes,

Luisa

Calin
tagDiv Staff

Hi,

If this is what you want https://www.screencast.com/t/AktCBxkV1AP3
Then please add this custom css

.td-header-style-12 .td-main-menu-logo, .td-footer-bottom-full .td-pb-span3 {
float: right!important;
}
.td-header-style-12 #td-header-menu {
float: right;
width: 900px;
}
.td-header-style-12 .td-main-menu-logo, .td-footer-bottom-full .td-pb-span3 {
float: left;
}
.header-search-wrap{
position : relative;
}
.td-header-wrap .td-drop-down-search {
left: 0;
}
.td-header-wrap .td-drop-down-search:before {
left: 19px;
}

Thanks

Calin
tagDiv Staff

Hi,

Please paste in Newspaper>Theme panel>Custom code>Custom css the below code
.td-header-style-12 .td-main-menu-logo, .td-footer-bottom-full .td-pb-span3 {
float: right;
}

See the results: https://www.screencast.com/t/bFEowfFjO
https://www.screencast.com/t/qiMqEBQyzbKw
This css will work only on header (Style 12), and in footer(Style 5).

Thank you.

pbc
Participant
#0

Hi, how to display logo on right side (Style 12), and in footer(Style 5).

Thanks

Calin
tagDiv Staff

Hi,

If I understand correcty you like heder style 1,
Then set the images in header style one, but be notice that if you are using the header ads will look wrong.
https://www.screencast.com/t/bQaR1L5qWWDC
If this is what you want https://www.screencast.com/t/MNHCw9B7VhC
Please paste the below custom css in Newspaper>Theme panel>Custom code >Custom css
.td-header-style-1 .td-header-sp-logo{
width: 1024px!important;
}
.td-header-style-1 .td-header-sp-logo a img{
float: left;
position: relative;
left: 52px;
}

You can edit the above css after your desire.

Thanks

mayer62
tagDiv Member

Can u show me how can i allign the logo in same raw? or maybe show me the page to modify to do that! im working in header style 1. rly thanks

mayer62
Participant
#0

Hi all, i d like to multiply x3 the entire logo section (also mobile) in the theme panel to put in each one a different logo with different redirect link! The result with all 3 logos side by side [LLL], each logo dimension 110x90px. Hope its possible or someone show me a trick to do that! thx guys, nice support ever!!

axehorde
tagDiv Member

1 – that option is enabled but the categories are not shown
2 – ok i’ll try but there is too much space from the bottom anyway. Look at the red lines https://ibb.co/kJiRxq maybe it’s the category that pushes the writing down?
3 – ok thanks i’ll try
4 – ok. this is not a big problem anyway.
5 – yes, it is similar but they are both wrong. It is clearly seen that the photo has been distorted by the width. look at the picture above.
6 – no, you did not understand the problem. I do not mean the google ads below. I refer to the background ads. From Background —> THEME BACKGROUND and also in the ads panel —> BACKGROUND click ad. I set the image as you can see from here https://ibb.co/kmNiSq.
The problem is that the background is also loaded on the phone. For the background I set CUSTOM CODE —> ADVANCED CSS —> DESKTOP this code: .td-header-wrap {margin-top:115px;}. I don’t know why but on mobile layout, when pages are loading (for example when I click on an article on the homepage), I see for a few seconds the background that I set in the site. Is it not possible to prevent the ad from being loaded into the mobile version? look at the picture https://ibb.co/cVN07q
This is a page that is loading and you see the amazon logo that has been set as background. It’s really bad to see it during the loading of pages…moreover, there is no need to load additional content in the background on mobile phones. It is a useless data consumption

7-Are this dimensions correct? this is may psd file for create custom background ads https://ibb.co/jBSxLA
anyway my pc is 1920×1080 but if i set that background with the same dimensions, on the left and right side remain white spaces. Why? the resolution is the same. Look here https://ibb.co/kQZBfA
to cover the white part I had to set the size on photoshop at 2200px wide. I do not understand why.

Calin
tagDiv Staff

Hi,

The image is the same in logo header, footer and post, the problem is the logo image, if you want this logo please try to build it to size 272 x 90px, do not resize it to this dimension.

Thank you for your understanding.

  • This reply was modified 7 years by Calin.
Simion C.
tagDiv Staff

Hi,

1. What kind of ads are you using? I could take a look, post a link to the website.

2. I could take a look here as well, ads for AMP have to be entered in the Theme panel AMP section. For Adsense ads you have to enter these parameters
https://support.google.com/adsense/answer/7183212?hl=en
https://www.screencast.com/t/rBr4FTlcH5X
Simple HTML ads can be entered in the dedicated section
https://www.screencast.com/t/W3d2qwNJhS
Be sure to test with a mobile or mobile editor to see if the ads appear.

3. That happens because the mobile theme plugin is active. This plugin is optional, it is intended to be used if you want to display a simpler and also different content on mobile.
You have to create 2 versions for each page, one with the composer for example as you did for that page, and one with the simple mobile editor
https://www.screencast.com/t/vSh8aLuBzjgT
As I said the plugin is optional, so if you want to display the same content from desktop on mobile, deactivate it. More info about the mobile theme here
https://forum.tagdiv.com/the-mobile-theme/

4. Some header styles display the header ad below the menu and logo for example
https://forum.tagdiv.com/header-styles/
There are also plans to introduce a header builder in coming updates, this will add a considerable amount of flexibility concerning the header section.

Thanks

Viewing 25 results - 6,351 through 6,375 (of 12,143 total)