Search Results for 'logo'

    No search results were found in Documentation!

Results from the Forum
claus
Participant
Logo Space - topic
#0

Hi everybody!
I just landed on Newspaper. I like it a lot and I’m studying all the several functions. So now as Header style I choose style 1 and I look to understand how could I have more space for the logo than the requested 272X90px without affecting the surroundings and how it is possible to align left.
Thanks in advance
Claudio

rgmolaro
Participant
#0

Hi, I need that the sticky menu logo be different that normal logo. Its possible?

johndd
Participant
#0

Hi,

I have uploaded logo in normal and Retina dimension, but its still blur on the frontpage, and seems the retina is not working.

I have double the size, but still not working.

Thanks,

John

cleverliving
Participant
#0

i was wondering if its possible to have a differnent logo and heading on you post pages than the logo/header which is on your home page?

GillBate
Participant
#0

If footer logo is not match the size that said in document, it will use default logo?

Bogdan B.
tagDiv Staff

Hello,
You can use a bit of css to do it, but it’s a bit tricky on this header style as you have to adjust the logo as well:
.td-header-style-12 .td-header-menu-wrap-full{
height: 40px!important;
}
.td-header-style-12.td-header-style-12 .td-main-menu-logo img{
max-height: 45px!important;
}
.td-header-style-12.td-header-style-12 .td-main-menu-logo a{
line-height: 45px;
}
.td-header-style-12.td-header-style-12 .td-header-menu-wrap .sf-menu > li > a{
line-height: 40px!important;
}
.td-header-style-12 #td-top-search{
top: 25%!important;
}
.td-header-style-12 .header-search-wrap .td-drop-down-search{
top: 65%!important;
}

Thank you!

newtag
Participant
#0

Hi,

any easy way to reduce the Main Menu height

<div class=”td-header-menu-wrap-full” style=”height: 80px;”>

of the Header Style 12 – Top colored menu with logo?

thx

muggi15
Participant
#0

Hi there!

Following your instructions and the hints in the manual, I´ve uploaded the folloewing sizes (tried it several times btw):

LOGO UPLOAD 272×90
RETINA LOGO UPLOAD 544 x 180
FAVICON 16 x 16
LOGO MOBILE 140 x 48 AND 132 x 42px
RETINA LOGO MOBILE 280 x 96 AND 264 x 84px

BTW, regarding the mobile sizes: The Newspaper WordPress Themepanel says this, your manual on the other hand says this 😉

For some reason, the mobile logo doesn´t get loaded, it´s always the standard Desktop Logo. I took a look at it in the shrinked browser window as well as on my smartphone itself, the logo doesn´t scale down and according to the chrome devtools window it´s obviosuly the 272×90 version. Interestingly, the sticky nav reliably shows the mobile logo, so it doesn´t seem to be a picture issue…

Did I do something wrong here or forgot something?

Thanks!

Catalin
tagDiv Staff

Hello talktotop,

Please notice that do not exist a special place where the title site will be displayed in your homepage. I suppose that you are referring to the logo and if you want to appear the title of your site you have to use this to do that. As I can see on your website, you do not have set it a logo and because of this, you have nothing appears to your header. Please check our demo preview and see how you have to look a homepage. Also, please check our video tutorial here -> https://www.youtube.com/watch?v=ss-BEobegAw because could be more useful for you.
->> https://forum.tagdiv.com/header-styles/ ->> https://forum.tagdiv.com/logo-favicon/
Hope this helps!

If is not what you mean, please provide more details about what you want to achieve so I will be able to provide a more accurate response.

Thanks.

Catalin
tagDiv Staff

Hello PedroMiguelMoreira,

I have checked your website and I did not saw any problems with your logo. If your problem reappears, please try to disable all the active plugins, leave just Visual Composer, clear all cache and install only the plugins that come bundled with our theme and rule out the conflicting plugins. It could be an error caused by your untested plugins which might interfere with the theme.

Hope this helps and let us know how it goes!

Thank you for the message!

PedroMiguelMoreira
Participant
#0

Hello,

My site is http://www.videosupporters.com

When the site opens, my logo appears during 1 second, but after my logo disappears (it appears the logo of newspaper).

How can I solve this problem?

Thank you.

Best regards,
Pedro Moreira

markbeede
tagDiv Member

I finally found another post similar to what I wanted to do. You can use custom CSS to do this as follows:

Go to Newspaper -> Custom Code -> Custom CSS and insert something similar to this:

.td-header-style-9 .td-logo-wrap-full
{
background: url(“<your full path>/header-image.jpg”) no-repeat center;
background-size: 1075px 150px;
}

It scales well on all devices too. Hopefully this will help someone else.

DagensVerklighet
tagDiv Member

Hi!

This placed our logo in the menu row, that’s nice.

The problem now is that since we also have out logo in the header on the left side, it shows our logo dubble.

The logo is not supposed to show up in the menu row when the page is all scrolled up. It’s only supposed to turn up when you scrolled down far enough to not see the header anymore.

Kind Regards

markbeede
Participant
#0

I am working with Newspaper for the first time. I am using Style 9 (Full logo on top) for a new website (http://www.gunnisonsockeyes.org). The logo works fine. Now I would really like to put a full width (980px) background image behind the logo. I tried to use a full size image as the “logo” but when it is rendered it is way too small. I want to it cover the full width of the header. I don’t see a background image option with Style 9. How can I do this?

Thanks in advance, Mark

Bogdan B.
tagDiv Staff

Hello,

You will have to edit a few more containers for it including the logo container and ad container.
Try this css instead:

.td-header-style-1 .td-header-sp-logo img{
max-height: 45px!important;
}
.td-header-style-1 .td-header-sp-logo{
height:45px!important;
margin: 0px 28px 0px 28px!important;
}
.td-header-style-1 .td-header-sp-recs{
margin:0!important;
}
.td-header-rec-wrap{
min-height: 45px!important;
}

Thanks.

thematanater
Participant
#0

Hey guys, I’m working on adjusting the size of my top banner, but can’t get it to adjust sizes properly.

The option for changing the banner height wasn’t in the theme options, so I hopped into the wp editor.

I found exactly what I needed, but changing the height of the banner distorts the rest of the site!

I’m using the default header style. This is the change I made in the editor:

Before:
container
*/
.td-container {
width: 1068px;
margin-right: auto;
margin-left: auto;
}
/*

After:
container
*/
.td-container {
width: 1068px;
height: 45px;
margin-right: auto;
margin-left: auto;
}
/*

My technique — manually adding a height, technically worked. The banner become the exact size I wanted it to be, but along with the change, my logo stopped appearing.

In short, is there an effective way to adjust the height (not only width) of the top banner? Just to be extra clear, I’m talking about the banner in “class=”td-banner-wrap-full td-logo-wrap-full”

Thanks!

muggi15
Participant
#0

Hi there! 😉

Newspaper shows a strange behavior regarding its startpage. If I change something within the theme panel/header section, for example changing the main menu from style 1 to style 10, changes will be saved for all pages – except for the startpage, where the style still remains on “style 1”. This also happened for a logo change I did this morning (the new logo appeared on the startpage after like 2 hours without laying my hands on it again).

Am I doing something wrong? Is this a known behavior?

Thanks!

Catalin
tagDiv Staff

Hello DagensVerklighet,

We know about this mini BUG, I have added to our list of improvements and we will resolve in next update. Until we will solve this, you have to try a bit of CSS code in order to achieve the logo in your sticky menu bar. Please try the code below and place it in Theme panel->Custom CSS area.

The code is ->

.td-main-menu-logo {
display: block;
}

The result you should see here -> http://screencast.com/t/cG6BQtDgi1j -> http://screencast.com/t/N1ubIqtHS7

Thank you for your understanding!

Sorry for the inconvenience!

Andrei L.
tagDiv Member

Hi

You can change that link by editing logo.php file as it’s indicated here: http://screencast.com/t/HtvPVR9dmEPO

Let me know how it goes.
Thanks!

giangdc
Participant
#0

Hello everyone,

I would like to ask you a question.
I try to add some other blog links by widget in the footer section of my blog. I add these by putting the embedded code in a textbox and add these to a menu footer 1:
http://s18.postimg.org/51724u989/ask.png

Here is the result. But it arrange vertically.
http://s9.postimg.org/w41lzv7v3/ask2.png

My question is:
How can I spread these icons horizontally for a better look ?

Thanks so much in advance

DagensVerklighet
Participant
#0

Hi!

Just as my topic title says:

I want smart snap on mobile, and on a desktop i want it to always stick.
This is done by simple picking “Smart snap – (mobile)” from the main menu options.

The problem is, when i do this, my logo only shows on mobile, not on desktop?
On desktop it plain and simply shows only a sticky meny row when i scroll down, no logo.

How do i make the logo show on the desktop with this option, without removing the function that its always sticky on desktop and on mobile its Smart snap.

Thanks.

kejri
Participant
#0

Hello,

By default, the logo seems to link to the home of the wordpress site. Is there a way to change that? e.g.

if my blog site is at http://www.mysite.com/blog, I would like the logo to link to: http://www.mysite.com and not to http://www.mysite.com/blog

Matija
tagDiv Member

1. I want this footer template but this logo and about us removed…I once had it but now I’ve lost it

Now I cant find where I removed it 🙂

2. Hover works, but now the submenu hover is blue…I want it removed too

3. Hmm this extra space I see in Forefox…the cache is cleared… and in Chrome everything is OK…

Catalin
tagDiv Staff

Hello Matija,

1)If you want to get rid of the footer logo, you have to remove from theme panel, like this -> http://screencast.com/t/5dxEUIQfU For more information about footer section, please consult the theme documentation here -> https://forum.tagdiv.com/footer-templates/

If you want to have this kind of text in the center of the footer section, you have to use footer template style 12 and customize it as you want. For example, you can use it like this -> http://screencast.com/t/bf5EgVMT -> http://screencast.com/t/QsfdYWegY7 and then you have to use a bit of CSS to align the text and the result you should see here -> http://screencast.com/t/oSaZGN9u

The code is ->

.textwidget {
text-align: center;
}

2)If you do not want to have a hover for your main menu, try the code below.

The code is ->

.td-header-style-12 .sf-menu > li > a:hover, .td-header-style-12 .sf-menu > .sfHover > a {
background-color: rgba(0, 0, 0, 0) !important;
}

The result -> http://screencast.com/t/es5c6kfiiRhQ

3)Unfortunately, I did not saw extra white spaces for your main menu, sorry! -> http://screencast.com/t/Osi95rpGxb Try to clear all cache (browser cache) and test it again.

Thanks.

Catalin
tagDiv Staff

Hello cstyn,

The simplest way to have the H1 tag on your homepage is using the pagebuilder+page title as the template, like this -> http://screencast.com/t/6iO24JGCPUR and then your page title will have H1 tag. Another possibility would be to use a text block for your homepage and set the H1 text as in the example above. In the next major update, we will implement H1 tag in the logo section but until we will release this you can use these methods.

Thank you for the message!

Viewing 25 results - 9,676 through 9,700 (of 12,143 total)