I am trying to display 4 text ads in a horizontal table.

<table>
<tr>
<td># 1 </td> <td>#2 </td> <td>#3</td> </td>#4</td>
</tr>
</table>

The issue is that the ad module is returning everything in a div, and divs add line breaks. I don't know enough css to fix this. I am hoping someone can help me.

I tried

.text-advertisement {
display: inline;
}
and
.advertisement-space{
display:inline;
}

This module is incredible, I just can't figure this one piece out.

Thanks!

Comments

jeremy’s picture

Why not just format them with CSS? Take a look in documentation/README.txt at the second CSS example.

drupalnuts’s picture

Status: Active » Closed (fixed)

Thank you, I feel rather dumb now.