Move Section Outside
This is the CSS moving (and styling) that div (which is called moveSection) **div only visible if you are viewing as single journal entry**
#moveSection {
display: block;
position: absolute;
top: 150px;
left: 50%;
margin-left: -700px;
width: 150px;
height: 200px;
overflow: visible;
background: #333;
color: white;
padding: 10px;
}
This is the HTML code you would place in your code injection point
<div id="myCustomLogo"> <img src="/storage/your-logo-image.jpg"> </div>