A Few Questions

Posted in: Newspaper
Post count: 10

1) How can I show the Article Top Ad above the single post title, currently it shows under the featured image. Or is there another way to place an ad above the post title?

2) How can I center the mobile header logo and remove the search button? (mobile only)

3) When placing 320px width ads on mobile, there seems to be a slight padding so the image is moved slightly to the right and not centered correctly: screen

How can this be fixed?

Post count: 1291

Hi,

1. You have to edit the post template files(depending on the style used loop-single default or 1-5) and add the following code above the title – http://screencast.com/t/JzT8ofAsKpX

render(array('spot_id' => 'custom_ad_1'));?>

Then you need to use custom css to adjust it (add the css inside Theme Panel -> Custom CSS) – http://screencast.com/t/YMdiBRy1

article .td-a-rec-id-custom_ad_1 {
margin-top: 15px;
margin-bottom: 0px;
}

2. Try the following css: – http://screencast.com/t/nb2b9iGqZ0Is

@media(max-width: 767px) {
.header-search-wrap {
display: none;
}
.mobile-logo-wrap img {
right: 0px !important;
left: 0px;
}
}

3. The padding is applied to the entire content – http://screencast.com/t/IgwOnop5
You could try to change the ad container position to relative an move it to the left (0px).

Thank you, Emil G.

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