Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author mrwweb

    (@mrwweb)

    It looks like this problem is coming from your theme and not the plugin.

    The plugin’s HTML output includes the results of the post_class() function which provides useful classes related to the post type, post status, and more. Your theme adds a “type-page” class and styles it with width:90%; in a theme-specific stylesheet.

    You’ll want to override this with a different style.

    .widget_fpw_widget .type-page {
        width: auto;
    }

    That should probably do the trick.

    Thread Starter tjvanapeldoorn1

    (@tjvanapeldoorn1)

    That did the trick, perfect!! Thanks 🙂

    Thread Starter tjvanapeldoorn1

    (@tjvanapeldoorn1)

    Hi, still have one question: how do I set the border to 0px? I don’t want to see the border that is showing now.

    Plugin Author mrwweb

    (@mrwweb)

    Just to be extra clear, this is an issue with the theme and not the plugin.

    The “border” is actually a drop-shadow, so add this to the CSS rule I posted above:

    -webkit-box-shadow: none;
    box-shadow: none;
Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Box doesn't show full width’ is closed to new replies.