Hallo,
ist es möglich zum Beispiel die Startseite im “Boxed” und alle andere Seiten als “Streached” einzustellen?
vielen Dank im voraus…
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
wooow, vielen dank, ich werde es ausprobieren, aber so sollte es auf jedem gehen, vielen Dank….
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
beide Varianten funktionieren leider nicht!
In der zweiten Variante wird ein Syntaxfehler ausgewiesen.
Liebe Grüße
Jan
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
vielen Dank