Move logo to left

Posted in: Newspaper
Post count: 23

Hi!

The logo in the header is pushed to the right. I tried:
.td-header-style-1 .td-header-sp-logo {
margin: 28px 28px 9px 0px;
}
and it’s ignoring that.

Thanks for your great help!

Windee

Post count: 249

Hi, this worked for me:


@media
(min-width: 1141px){
.td-header-style-1 .td-header-sp-logo {
margin: 28px 0px 9px 0px;
width: 340px;
padding: 0px
}
.td-header-style-1 .td-header-sp-logo img {
right: auto;
}
}

Post count: 23

Thank you SnowwatchGB,

I tried it and no luck.

Post count: 23

We’d also like to remove some of the padding and let the logo image take up more of the header space, but not make the black area taller.

Padding should be –
left – 35px
top/bottom 15px

http://weedstream.net/dev/

I thought it might be better to combine these instead of making a new entry.

Thank you!

Post count: 7909

Hi,

The code that @snowwatchGB provided to you should work if you use !important tag – http://screencast.com/t/qvooRjfLxd

@media (min-width: 1141px){
.td-header-style-1 .td-header-sp-logo {
margin: 28px 0px 9px 0px !important;
width: 340px !important;
padding: 0px !important;
}
.td-header-style-1 .td-header-sp-logo img {
right: auto !important;
}
}

Thanks!

Post count: 23

That did it! Thanks!

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