badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

Position of page title in default page

Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • #9979
    TheTwister
    Participant

    Hi there,

    Not sure if I can explain this properly but…
    When I create a new page and make it to the template default. There isn’t the grey background over the title like the contact form template.

    What do I need to do to make this appear like the contact form for the default page?

    #9991

    Hi
    for the contact for page you need to select the contact form template.
    We have designed our theme this way. If you select the default page then it may not work too so we recommend you to use contact template.
    Regards
    Sunil

    #10069
    TheTwister
    Participant

    Hi Sunil,

    So there is no way to make the title like on the contact template work the same on the default page?
    Because I’m not wanting the right column widget which is on that contact page.

    #10223

    Hi TheTwister,

    We have design the page title that way for contact template. We will update this in next version soon.
    Also, To remove right column widget from the contact page please edit your contact page and set it to default page template from the right part of the editor page as shown in this screenshot http://awesomescreenshot.com/0d72s99i5b then go to your bottom of the editor page and set the page layout to No sidebar, Full Width as shown in this screenshot http://awesomescreenshot.com/0742s99lbd

    Hope this solve your problem.

    Thank you for using our theme.

    #10257
    TheTwister
    Participant

    Just to double check what you said. You are going to make the page title the same as the contact form for the default template?

    #10276

    Hi TheTwister,

    Yes the page title designed will be changed if you choose the default template for contact page. If you want to remove the right sidebar you will have to consider with the page title design. For now it is not possible to make the same page title for all the pages as contact page have. We will think about it and update it in near future.

    Thank you!

    #10884
    TheTwister
    Participant

    Any news for having the page title wrap for the default page? The website looks smarter having it for all pages.

    #10952

    Hi TheTwister,
    Recently we haven’t worked on it yet. Many thanks for your suggestion. We will think about it in our upcommig version.
    Thank you

    #11088
    TheTwister
    Participant

    Ahh ok thank you.
    I hope you do create it in the next version! I really like this template for what I’m doing.
    Just not having all of the titles the same looks quite strange and its really bugging me.

    #11099

    Hi TheTwister,

    Thanks for your suggestion.

    Thank you!

    #12326
    TheTwister
    Participant

    Have you done this yet?

    #12330

    Sorry Twister,
    We are busy on new product. You may customize a code by making the child theme. We will think about it.
    Thank you!

    #12549
    TheTwister
    Participant

    Hm ok I tried it with a child theme but it wouldn’t let me for some :-/

    #12554
    TheTwister
    Participant

    The child theme works with CSS, how do I work it with changing the PHP files?

    #12566

    You just create a functions.php file and first unhook the functions and then only edit the code.

    for example to change the text of error page.

    // Unhook default Thematic functions
    function unhook_thematic_functions() {
    // Don’t forget the position number if the original function has one

    remove_action( ‘attitude_404_content’, ‘attitude_display_404_page_content’, 10 );

    }
    add_action(‘init’,’unhook_thematic_functions’); // removes the header content by using hook attitude_header

    add_action( ‘attitude_404_content’, ‘attitude_child_display_404_page_content’, 10 );
    /**
    * function to show the footer info, copyright information
    */

    function attitude_child_display_404_page_content() { ?>
    <div id=”content”>
    <header class=”entry-header”>
    <h1 class=”entry-title”><?php _e( ‘Error 404-Page NOT Found’, ‘attitude’ ); ?></h1>
    </header>
    <div class=”entry-content clearfix” >
    <p>Thank you</p>
    </div><!– .entry-content –>
    </div><!– #content –>
    <?php
    }

    Or you may view the forum link too.

    Thank you!

Viewing 15 posts - 1 through 15 (of 15 total)
  • You must be logged in to reply to this topic.