• Resolved fostinwd

    (@fostinwd)


    I’m trying to customize a theme and I need an element to appear “outside” of the sheet so I can put the date on it.. unfortunately the element is somehow “cut” by the border and it disapears…

    what should I do?

    this is what I need: CLICK HERE

    and this is the theme: CLICK HERE

Viewing 4 replies - 1 through 4 (of 4 total)
  • You need to remove overflow: hidden; from .art-contentLayout .art-content { ... } in style.css line 1344.

    Beginning at line 1344 of your style.css, you have this:

    .art-contentLayout .art-content
    {
        position: relative;
        margin: 0;
        padding: 0;
        border: 0;
        float: left;
        overflow: hidden;
        width: 616px;
    }

    Either delete the overflow: hidden property, or change it to something like overflow: visible.

    Sorry, I was still typing mine and didn’t see Joseph’s response until after I posted. Same info, though!

    Thread Starter fostinwd

    (@fostinwd)

    great!! thanks for your help guys..

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘post title background’ is closed to new replies.