Reputation: 469
I'm creating a wordpress template. I'm using the_content(); to get the text written in the backend. Wordpress usually wrapps that inside a <p>
. After the_content(); I want to have a link (that is not written into the WYSIWYG-Editor), and that link is inside a div. Now I want the <div>
to flow right next to the p-wrapped text:
<p>
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna, sed diam.</p>
<div>
MY LINK</div>
Thanks!
Upvotes: 1
Views: 101
Reputation: 1596
you can use css display: inline and display: inline-block to do that
Using inline-block
<p style="display: inline-block;"> Content of p tag </p>
<div style="display: inline-block;"> <a href="#">Content of div tag </a></div>
Using inline:
<p style="display: inline;"> Content of p tag </p>
<div style="display: inline;"> <a href="#">Content of div tag </a></div>
Upvotes: 0
Reputation: 662
I didn't understand your question correctly, but I think you mean this
.inline {
display: inline;
}
<div>
<p class="inline">Content is here</p>
<div class="inline"><a href="">The link</a></div>
</div>
Upvotes: 4