• Someone please help…I’m using Coraline theme and I managed to change the opacity of the content-container so it looks decent with my background. The problem is that images and videos are too close to the margins of the content-container and makes the post look a bit strange. Below is the code from css style sheet I’m currently using and wanted to know what I need to do to fix these margins for the posts content. Thanks in advance.

    The site’s URL is https://www.hhrapinfo.com

    #container {
    clear: both;
    margin: 0 auto;
    opacity: 0.978;
    }
    #content-container {
    width: 100%;
    background: #E5E5E5

    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • Try changing:

    #content-container {
        background:#E5E5E5;
        width: 100%;
    }

    to:

    #content-container {
        background:#E5E5E5;
        width: 100%;
        padding:0 10px;
    }

    in style.css

    Thread Starter GersonDonis

    (@gersondonis)

    Esmi thank you so much, the code worked but now somehow when I add the padding:0 10px to the container it makes my widget bars show up at the bottom of the page instead of the side. Any ideas how to fixed the widget bars from doing this?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Margins in content-container of Coraline Theme’ is closed to new replies.