Hi,
as far as I can see, if I insert, for example "myclassname" in "Page Class" for a Blog View menu item (I haven't tested it for others), the class="myclassname" is applied to all articles in the page, one by one, instead of applying it to #ttr_page.
Expected result:
<div id="#ttr_page" class="container myclassname">
<div id="ttr_content_and_sidebar_container">
<div id="ttr_content" class="zero_column" style="width:100%">
<div id="ttr_content_margin">
<div style="height:0px;width:0px;overflow:hidden;-webkit-margin-top-collapse: separate;"></div>
<div id="system-message-container">
</div>
<h1>Page heading</h1>
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12">
...
TT result:
<div id="#ttr_page" class="container">
<div id="ttr_content_and_sidebar_container">
<div id="ttr_content" class="zero_column" style="width:100%">
<div id="ttr_content_margin">
<div style="height:0px;width:0px;overflow:hidden;-webkit-margin-top-collapse: separate;"></div>
<div id="system-message-container">
</div>
<h1>Page heading</h1>
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12 myclassname">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12 myclassname">
...
This makes it difficult to format pages because the styles are applied to all children articles intros but not at the page.
Thank you
Regards