Several issues

  • 1. Headers

    Is there a way to have the left and right headers shown in mobile layout? Currently, I have to squeeze my headers on the left so that they will all appear in mobile layout.

    2. In every post, the text box is cut out on the top-right corner to show the post date, author, and “leave a comment”. Any way to move this so that the post text box is not cut out at that corner?

    3. Any way to change the page title colour? Currently, I post with a featured image on every post page. The featured image can sometimes be mainly white, and the page title will then be barely seen.

    Thank you.

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

  • Hello,

    Thanks for reaching out. We’ll be happy to help.

    1. The Luxury Theme has a separate menu location for the mobile menu, as seen in this screenshot:

    Screen Shot

    Create a new menu, and assign the menu to the “Mobile Menu” location. Add the links and pages of your choice, and save the menu. Then, those links will appear in mobile view. As a result, you can display your left and right menus on a desktop independently of the mobile menu.

    2. Within the “Additional CSS” section of the Customizer, try adding the following style and let us know if that’s the appearance you’re seeking:

    .postarea .entry.overlay {
        margin: 0 auto;
        float: none;
        max-width: none;
        min-width: auto;
        text-align: center;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
    }

    3. You can change the title color, but you have to target the page/post ID for each page you want to change the title color. Otherwise, the title color will change for all posts and pages. For instance, you could add the following style:

    #post-402 .headline.img-headline {
        color: red;
    }

    That style will change the title color on only this post, https://kissofrenaissance.com/2021/01/10/position/

    For each page/post you wish to change the title color, you will need to change the “402” number to reference the ID of the page/post you are trying to change.

    I hope this helps. Thanks!

  • The topic ‘Several issues’ is closed to new replies.