Jump to content

Using HTML in Block Custom HTML


JohnCourt

Recommended Posts

Folks, I am stumped, I am trying to create a block, custom, with manual html. I am using common html columns code such as:

 <div class="row">
  <div class="column"></div>
  <div class="column"></div>
  <div class="column"></div>
</div> 

But my layout is shown as paragraphs, instead of the three column layout I would like for three content areas.

I have tried various html elements, with manual html custom block, and nothing seems to work, can anyone tell me what step I am missing? Thanks for any help.

Link to comment
Share on other sites

5 hours ago, JohnCourt said:

Folks, I am stumped, I am trying to create a block, custom, with manual html. I am using common html columns code such as:


 <div class="row">
  <div class="column"></div>
  <div class="column"></div>
  <div class="column"></div>
</div> 

But my layout is shown as paragraphs, instead of the three column layout I would like for three content areas.

I have tried various html elements, with manual html custom block, and nothing seems to work, can anyone tell me what step I am missing? Thanks for any help.

What css have you used for those classes ?

Otherwise try this:

	<div class='ipsGrid ipsGrid_collapsePhone'>
		<div class='ipsBox ipsGrid_span4'>
			Your Content
		</div>
		<div class='ipsBox ipsGrid_span4'>
			Your Content
		</div>
		<div class='ipsBox ipsGrid_span4'>
			Your Content
		</div>
	</div>

 

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...