Ok, read my bio and you will understand this stupid question. Ok, here we go:
I got 2 divs. One for the menu and one for the content. It’s the content div that gives me a headache.
The div box for the menu and the div for contents are totally split with about 20px between them done with CSS. So over to the content div that I want to split. I want it to be two divs on the same line with no space between them. How do I do that? I attached some of my HTML and CSS to show you a little how this is sewed together. So what I want is one div split into two fields for the content. 1 content on the left side and one on the right side. I really appreciate your help
div.content_box {
position: static;
box-shadow: 30 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 2 0px 0 rgba(0, 0, 0, 0.19);
border: 1px solid #a1a1a1;
border-radius: 7px;
background-color: #f1f1f1;
margin-top: 75px;
margin-left: 210px;
width: 70%;
<body class="size">
<div class="wrapper">
<div class="logo_box"></div>
<div class="header_bar"><?php require_once("header_bar.php") ?></div>
<div class="content_box">
<h4 class="headline_bold">Test</h4>
<h3 class="content">Test <a href="content/contact.php">kontaktsiden</a>.</h3>
<h4 class="headline_bold">Test</h4>
<h3 class="content">Test</h3>
<h4 class="headline_bold">Test</h4>
<h3 class="content">Test</h3>
<h3 class="content">Test</h4>