Tagged: ,

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #195772

    Hallo,

    ist es möglich zum Beispiel die Startseite im “Boxed” und alle andere Seiten als “Streached” einzustellen?

    vielen Dank im voraus…

    #196447

    Hey yoice!

    I am not sure if this is the best way but please go to Appearance > Editor in WordPress dashboard and open header.php file and find

    <html <?php language_attributes(); ?> class="<?php echo " html_$style ".$responsive." ".$headerS;?> ">

    and change it to

    <html <?php language_attributes(); ?> class="<?php if(!is_page(734)) { echo " html_stretched ".$responsive." ".$headerS; } else { echo " html_$style ".$responsive." ".$headerS; }?>  ">

    You just need to change page ID ( 734 in my case ) to page ID of your home page. You can right click on Chrome and on Firefox and click Inspect Elements to find out page ID’s http://i.imgur.com/TrDQ84Y.jpg

    Regards,
    Yigit

    EDIT: Please choose boxed layout in Enfold theme options under Styling tab

    • This reply was modified 10 years, 7 months ago by Yigit.
    #196571

    wooow, vielen dank, ich werde es ausprobieren, aber so sollte es auf jedem gehen, vielen Dank….

    #196573

    Hey!

    Personally I recommend to use following code instead

    
    <html <?php language_attributes(); ?> class="<?php if(!is_home() && !is_front_page()) { echo " html_stretched ".$responsive." ".$headerS; } else { echo " html_$style ".$responsive." ".$headerS; }?>  ">
    
    

    the is_page() conditional is imo not the best solution to check if the current page is the home/front page.

    Cheers!
    Peter

    • This reply was modified 10 years, 7 months ago by Dude.
    #196957

    beide Varianten funktionieren leider nicht!

    In der zweiten Variante wird ein Syntaxfehler ausgewiesen.

    Liebe Grüße
    Jan

    #196974

    Hey!

    Ja, im Code hat eine Klammer gefehlt – sollte nun funktionieren. Stelle bitte sicher, dass die Layout Option auf “boxed” gesetzt ist.

    Best regards,
    Peter

    #196975

    vielen Dank

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Boxed / Streched’ is closed to new replies.