Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #716773

    Hi!

    Is it possible to make the name of the page visible?

    Right now it only shows the content of the page.

    With blog posts it works well… It shows blog name and content.

    Hope to hear from you!

    Maaike

    #717611

    Hi MaaikeVVV!

    Thank you for using Enfold.

    Please go to the Header > Header Layout and then set the “Header Title and Breadcrumbs” to display the title. If you’re using the advance layout builder, use the Special Heading element or text block to display the title of the page.

    Cheers!
    Ismael

    #718328

    Hi Ismael,

    Instead of inserting an extra element per page, is there a way to make the title visible if you don’t use the header element?

    Right now, the header/navigation is to the left of the page.

    Would help a lot if there is a code or something I can use to make it visible…

    Thanks!

    #719435

    Hi,

    Please copy enfold/header.php file into your child theme and then find following line

    
    	<div id='main' class='all_colors' data-scroll-offset='<?php echo avia_header_setting('header_scroll_offset'); ?>'>

    and add following code right below that line

        <?php if(is_page()){ 
                echo "<h1 class='page-title container'>".get_the_title()."</h1>"; }
            ?>

    Best regards,
    Yigit

    #719800

    Super Yigit!!

    Great! It’s visible :-))

    Now it is time to style it. Any advice on how to style the background and the font size?

    #719805

    Hey!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    h1.page-title.container {
        background: orange;
        margin: 0;
        width: 100%;
        max-width: 100%;
        color: white;
    }

    Regards,
    Yigit

    #719827

    THANK YOU :-)))

    #719829

    Hi!

    You are welcome! :)

    For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
    And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
    For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)

    Regards,
    Yigit

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Page name visible’ is closed to new replies.