Bring Logo & Nav in one line

Posted in: Newspaper
Post count: 2

Hi there,

thanks for this awesome theme! I would like to know if theres an css option to bring the logo and the nav bar in one line like mashable.com.

This would be super sweet!

Thanks a lot
Philipp

Post count: 3343

Hi,
You can put you logo directly in menu, like a link using <img src="link to your logo" /> then you need to adjust it a little via CSS. http://screencast.com/t/klXNT9666Z2

Add the logo and if you don’t manage it to fit it, give us a link to see the issue and we will provide you a CSS.

Here is an example but is only on scroll, scroll down to see the logo: http://www.uesmag.com/

Thanks!

Post count: 2

Hi Marius,

thanks! I could add the logo to the menu! Is it possible to provide me the the right css so that the main logo above disappears when you see the page on desktop & tablets but is shown when I visit the site on a mobil device?

This is the site: http://viralstories.de/

THIS would be awesome and you would save my day!

Thanks a lot
Philipp

Post count: 3343

Hi,
I can’t view your site because of this popup http://screencast.com/t/23akHsruiB1X and please get that popup down, all visitors will leave when see that.

Thanks!

Post count: 24

Hi, This is my first time to post here. Just purchased this theme last week.

My site is http://www.goarchers.com/ .Please advise how logo will fit in with the menu.

Also, will it be possible for this logo to change to a different one when scrolled down?

THanks

  • This reply was modified 12 years by bigdeal.
Post count: 24

Anyone?

Post count: 3343

Hi,
Add this CSS in Theme panel -> Custom CSS


.menu-item-12304 img {
    height: 45px;
    position: relative;
    top: -3px;
    width: auto;
}

also if you don’t use the above header you can hide it via CSS with this:

.td-header-bg {
    display: none;
}

To change the logo when scroll use this:
1. Hide the original logo when scroll:

.affix .menu-item-12304 img {
    display: none;
}

2. Add a new logo:

.affix .menu-item-12304 a {
    background-image: url("put here the link to the new logo image");
    background-repeat: no-repeat;
    background-size: auto 47px;
    width: 202px;
}

Adjust the 47px size and 202px size to fit like you want.

Hope this help!
Thanks for the message!

Post count: 24

Thanks a lot!!

Post count: 24

I was wondering also if it is possible for the entire main menu bg color to change once scrolled down?

Post count: 3343

Hi,
Use this:

.td-menu-background.affix {
    background-color: #FF0000 !important;
}
Post count: 24

Works perfect. thanks!

Viewing 11 posts - 1 through 11 (of 11 total)
The forum ‘Newspaper’ is closed to new topics and replies.