Positioning content on blog

Hi all,

I was wondering if someone could help with a small problem. Our company has started a new blog page:

http://blog.innerdrive.co.uk/read-this-now

As you can see there are 5 posts and then below a link to our borchure and our new book. Originally the new brochuire and new book modules were floating on the right hand side of the page, now they are not. For the life of me I can’t work out how to get them back there! They are in the same position on the layout in design manager and I’ve tried using the div float property also to no avail, although this could be because I’m doing it wrong..

As you can tell I don’t have a great deal of experience with code and am sure there’s a simple fix, would be greatly appreciative of any help you can give. This is what the html for the brochure module currently looks like:

<div style=“text-align:center;” <div style=“float:right” “=“sidebar-brochure-block”>
<centre><h3>our brochure</h3></centre>
<div class=“banner-col-centre”>
<img src=“https://cdn2.hubspot.net/hubfs/2330409/InnerDrive-July2016/Images/example-brochure.png” >
<div class=“transparent-btn”>
<a href=“http://www.innerdrive.co.uk/wp-content/uploads/2016/06/InnerDrive-Education-Brochure.pdf” target=”_blank">
<div class=“transparent-btn__content”>download brochure</div>
</a>
</div>
</div>
</div>

Let me know if I can provide any more information and I will.

Cheers,

George Nichols

Innerdrive

It looks like each of your posts look something like this:

<div style="width:900px;background:#d4e1f7;border:0px solid black;text-align:left; padding: 6px;">
<h4>[TITLE]</h4>
<h6>[SUBTITLE]</h6>
[DESCRIPTION]
[CTA CODE]

You are missing the closing div tag </div> which is throwing off the formatting of the blog.

Adding that back to the HTML of each of the posts should fix it.

Cheers Danielle! Sorted it out, thanks for your help.