Viewing 1 replies (of 1 total)
  • Plugin Author Nick Diego

    (@ndiego)

    Hi lsilver,

    It is technically possible, but you are going to have to get pretty creative with CSS. Here is one solution that will center the page title text nicely in the middle (both vertically and horizontally) of the widget as a whole. So if you are only displaying an image and the title, the title will be in the middle of your image. If you are adding page content, or custom content, below the image you will need to tweak the code a bit. You also may need to tweak it some anyways depending on your theme.

    .featuredpage header.entry-header {
        width: 50%;
        height: 50%;
        overflow: auto;
        margin: auto;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        text-align: center;
    }

    I hope this helps, and a great resource is this article from Smashing Magazine. CSS can accomplish pretty much anything you need.

Viewing 1 replies (of 1 total)
  • The topic ‘Overlay Title On Image?’ is closed to new replies.