Seeking assistance with CSS as I am struggling to get it right. I have a div containing other elements:
<div class="place_section" style="height:375px;" data-session="3" data-client="2">
<div class="row">1</div>
<div id="3" class="place place_type1" data-place="[l=1;f=0;r=1;p=1]">
<div class="center_chair">
<span class="left_chair"></span>
<span class="right_chair"></span>
</div>
</div>
// other divs
</div>
This is the content.css
:
.place_section {
background: url("/content/images/screen_bg.png") 0 0 repeat-x;
margin: 0 auto;
margin-top: 40px;
position: relative;
}
Here is a screenshot of how it appears:
I am looking to move the image (blue line) to the right by about 20-25px. Could anyone provide guidance on achieving this?
Thank you.