Home › Forums › Front-end Issues › Converting Bootstrap 4 to WordPress using ACF › Reply To: Converting Bootstrap 4 to WordPress using ACF
I would suggest looking at the bootstrap documentation more closely, Or direct your question to a forum that is about bootstrap. Your nesting of elements in incorrect. You also do not need to supply any type of float styles when using bootstrap as the col classes manage this for you.
Some basic bootstrap markup for 2 columns
<div class="container">
<div class="row">
<div class="col-lg-6">
Text Here
</div>
<div class="col-lg-6">
Image Here
</div>
</div>
</div>
What you have will only make 2 columns on large screens >= 992 pixels. On smaller screens they will stack.
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.