A few questions

  • Unknown's avatar

    Not sure if I should ask all of these at once or as different questions so here goes.

    Is there a way to have all titles on my home page for the grids be either over the image or under? right now some are over and some are under, I’d like them to be consistent.

    Is there a way to add some content between the footer and content of each page?

    For the main menu, is there a way I can have it be all one color instead of white unless a tab is selected?

    Thank you for your time!

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi there, Events, What we offer, and About us are featured pages whereas Resources, News and Mariah Video are widgets. As designed, the theme does the titles of the featured pages below and widgets above. The first option is to relocate the titles on the widgets down below like on the featured pages.

    .front-page-widget .widget-title {
        position: absolute;
        bottom: 0;
        margin-bottom: 0;
    }
    .front-page-widget {
        position: relative;
    }
    .front-page-widget .widget:not(.widget_text) div {
        padding-bottom: 20px;
    }

    With the above, you would want to do some work on your images so that the height of the images and the video are the same so the titles are aligned horizontally.

    The other solution is to move the titles for the featured pages up above the featured images.

    .featured-page-area .hentry {
        position: relative;
        padding-top: 50px;
    }
    .featured-page-area .hentry .entry-title {
        position: absolute;
        top: 0;
    }
  • Unknown's avatar

    That worked, thanks! Client is still deciding on images so I won’t resize them until they decide.

  • Unknown's avatar

    Awesome, and you are welcome!

  • The topic ‘A few questions’ is closed to new replies.