I have 2 hr tags in an email body and I want to place them on top of each other.
This is what I have tried:
<div>
<div><hr color="gray" width="500" align="left"></div>
<div><hr color="teal" width="250" align="left" margin="-15px"> </div>
</div>
I have tried several different tags and until now I can see both hr tags one above/before the other.
Simply add position absolute to your divs.
div{
position: absolute;
}
In the absence of other responses, I would suggest a table structure (since in emails you would already be using tables), and then a simple border-bottom or border-top, to achieve this.
If you want 15px of teal on the left, and the rest gray:
<table width="100%" cellpadding="0" cellspacing="0">
<tr>
<td width="15" style="border-bottom:1px solid teal">
</td>
<td style="border-bottom:1px solid grey">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</td>
</tr>
</table>
I'm making a template to show documents by its parts (title, annotation, contenttext).
{% block header %}
<h1>{% block title %}Documents{% endblock %}</h1>
{% endblock %}
{% block content %}
{% for document in documents | groupby('documentid' %}
<div class="card mb-3">
<div class="card-header">
{{ document.annotation }}
<span class="badge badge-pill badge-primary">{{ document.title}}</span>
</div>
<div class="card-body">
<p class="card-text">{{ document.contenttext }}</p>
</div>
</div>
{% endfor %}
{% endblock %}
The table looks like that:
documentid title annotation contenttext
1 abc abc abc
1 abc abc def
2 zzz xxx yyy
3 ooo mmm fff
Two first rows have the same documentid so i want to display both 'abc' and 'def' in the same document. And then go frther.
Which construction will allow me to do that?
title|annotation|contenttext
doc1: abc | abc | abc def
doc2: zzz | xxx | yyy
doc3: ooo | mmm | fff
I have two tables one with 9 fields the other with 12 fields in teradata sql. While i can join on the 9 common fields 3 fields are not joining therefore creating duplicate reads.
[Join on t1.field1=t2.field1
And t1.field2=t2.field2
And t1.field3=t2.field3
And t1.field4=t2.field4
And t1.field5=t2.field5
And t1.field6=t2.field6
And t1.field7=t2.field7
And t1.field8=t2.field8
And t1.field9=t2.field9]
However I have 3 more fields t2.field10, t2.field11,t2.field12
which is creating duplicate records from table1.
Can you advise on how to build a select statement that would not create duplicate of records from table1?
table 1
<tr> <th> semester </th><th> country </th><th> state </th><th> county </th><th> city </th><th> school name </th><th> type </th><th> type2 </th><th> class </th><th> number of students </th> </tr>
<tr> <td> spring2016 </td><td> USA </td><td> Illinois </td><td> Cook </td><td> Chicago </td><td> x1 </td><td> elementary </td><td> public </td><td> 1 </td><td> 331 </td> </tr>
<tr> <td> spring2016 </td><td> USA </td><td> Illinois </td><td> Cook </td><td> Chicago </td><td> x1 </td><td> elementary </td><td> public </td><td> 2 </td><td> 487 </td> </tr>
<tr> <td> spring2016 </td><td> USA </td><td> Illinois </td><td> Cook </td><td> Chicago </td><td> x1 </td><td> elementary </td><td> public </td><td> 3 </td><td> 329 </td> </tr>
<tr> <td> spring2016 </td><td> USA </td><td> Illinois </td><td> Cook </td><td> Chicago </td><td> x1 </td><td> elementary </td><td> public </td><td> 4 </td><td> 400 </td> </tr>
<tr> <td> spring2016 </td><td> USA </td><td> Illinois </td><td> Cook </td><td> Chicago </td><td> x1 </td><td> elementary </td><td> public </td><td> 5 </td><td> 225 </td> </tr>
<tr> <td> fall2016 </td><td> USA </td><td> Illinois </td><td> Cook </td><td> Chicago </td><td> x1 </td><td> elementary </td><td> public </td><td> 1 </td><td> 249 </td> </tr>
<tr> <td> fall2016 </td><td> USA </td><td> Illinois </td><td> Cook </td><td> Chicago </td><td> x1 </td><td> elementary </td><td> public </td><td> 2 </td><td> 136 </td> </tr>
<tr> <td> fall2016 </td><td> USA </td><td> Illinois </td><td> Cook </td><td> Chicago </td><td> x1 </td><td> elementary </td><td> public </td><td> 3 </td><td> 140 </td> </tr>
<tr> <td> fall2016 </td><td> USA </td><td> Illinois </td><td> Cook </td><td> Chicago </td><td> x1 </td><td> elementary </td><td> public </td><td> 4 </td><td> 444 </td> </tr>
<tr> <td> fall2016 </td><td> USA </td><td> Illinois </td><td> Cook </td><td> Chicago </td><td> x1 </td><td> elementary </td><td> public </td><td> 5 </td><td> 371 </td> </tr>
table 2:
country </th><th> state </th><th> county </th><th> city </th><th> school name </th><th> type </th><th> type2 </th><th> level </th><th> class </th><th> homework </th><th> field trip </th><th> tests </th><th> planned budget </th><th> actual budget </th> </tr>
USA </td><td> Illinois </td><td> Cook </td><td> Chicago </td><td> x1 </td><td> elementary </td><td> public </td><td> 1 </td><td> american literature </td><td> n </td><td> n </td><td> 8 </td><td> 6856 </td><td> 5800.357992 </td> </tr>
USA </td><td> Illinois </td><td> Cook </td><td> Chicago </td><td> x1 </td><td> elementary </td><td> public </td><td> 1 </td><td> geography </td><td> y </td><td> y </td><td> 8 </td><td> 3040 </td><td> 963.4004114 </td> </tr>
USA </td><td> Illinois </td><td> Cook </td><td> Chicago </td><td> x1 </td><td> elementary </td><td> public </td><td> 1 </td><td> music </td><td> y </td><td> y </td><td> 10 </td><td> 3288 </td><td> 2362.845994 </td> </tr>
USA </td><td> Illinois </td><td> Cook </td><td> Chicago </td><td> x1 </td><td> elementary </td><td> public </td><td> 2 </td><td> american literature </td><td> n </td><td> n </td><td> 8 </td><td> 6984 </td><td> 4368.417857 </td> </tr>
USA </td><td> Illinois </td><td> Cook </td><td> Chicago </td><td> x1 </td><td> elementary </td><td> public </td><td> 2 </td><td> british literature </td><td> n </td><td> n </td><td> 4 </td><td> 3977 </td><td> 3861.683941 </td> </tr>
USA </td><td> Illinois </td><td> Cook </td><td> Chicago </td><td> x1 </td><td> elementary </td><td> public </td><td> 2 </td><td> geography </td><td> y </td><td> n </td><td> 5 </td><td> 5358 </td><td> 1727.575547 </td> </tr>
USA </td><td> Illinois </td><td> Cook </td><td> Chicago </td><td> x1 </td><td> elementary </td><td> public </td><td> 3 </td><td> biology </td><td> y </td><td> n </td><td> 6 </td><td> 4490 </td><td> 4241.514602 </td> </tr>
USA </td><td> Illinois </td><td> Cook </td><td> Chicago </td><td> x1 </td><td> elementary </td><td> public </td><td> 3 </td><td> british literature </td><td> n </td><td> y </td><td> 9 </td><td> 3476 </td><td> 2176.995858 </td> </tr>
USA </td><td> Illinois </td><td> Cook </td><td> Chicago </td><td> x1 </td><td> elementary </td><td> public </td><td> 3 </td><td> PE </td><td> y </td><td> y </td><td> 7 </td><td> 6060 </td><td> 713.4806136 </td> </tr>
USA </td><td> Illinois </td><td> Cook </td><td> Chicago </td><td> x1 </td><td> elementary </td><td> public </td><td> 4 </td><td> biology </td><td> y </td><td> y </td><td> 8 </td><td> 5059 </td><td> 2269.706168 </td> </tr>
USA </td><td> Illinois </td><td> Cook </td><td> Chicago </td><td> x1 </td><td> elementary </td><td> public </td><td> 4 </td><td> music </td><td> n </td><td> y </td><td> 8 </td><td> 3250 </td><td> 583.2956503 </td> </tr>
USA </td><td> Illinois </td><td> Cook </td><td> Chicago </td><td> x1 </td><td> elementary </td><td> public </td><td> 4 </td><td> PE </td><td> n </td><td> y </td><td> 3 </td><td> 3945 </td><td> 577.6461806 </td> </tr>
USA </td><td> Illinois </td><td> Cook </td><td> Chicago </td><td> x1 </td><td> elementary </td><td> public </td><td> 5 </td><td> american literature </td><td> n </td><td> y </td><td> 7 </td><td> 4083 </td><td> 2853.53736 </td> </tr>
USA </td><td> Illinois </td><td> Cook </td><td> Chicago </td><td> x1 </td><td> elementary </td><td> public </td><td> 5 </td><td> music </td><td> y </td><td> y </td><td> 8 </td><td> 3502 </td><td> 1257.361273 </td> </tr>
USA </td><td> Illinois </td><td> Cook </td><td> Chicago </td><td> x1 </td><td> elementary </td><td> public </td><td> 5 </td><td> PE </td><td> n </td><td> n </td><td> 3 </td><td> 5234 </td><td> 4075.859156 </td> </tr>
USA </td><td> Illinois </td><td> Cook </td><td> Chicago </td><td> x1 </td><td> elementary </td><td> public </td><td> 1 </td><td> american literature </td><td> n </td><td> n </td><td> 8 </td><td> 6856 </td><td> 5800.357992 </td> </tr>
USA </td><td> Illinois </td><td> Cook </td><td> Chicago </td><td> x1 </td><td> elementary </td><td> public </td><td> 1 </td><td> geography </td><td> y </td><td> y </td><td> 8 </td><td> 3040 </td><td> 963.4004114 </td> </tr>
USA </td><td> Illinois </td><td> Cook </td><td> Chicago </td><td> x1 </td><td> elementary </td><td> public </td><td> 1 </td><td> music </td><td> y </td><td> y </td><td> 10 </td><td> 3288 </td><td> 2362.845994 </td> </tr>
USA </td><td> Illinois </td><td> Cook </td><td> Chicago </td><td> x1 </td><td> elementary </td><td> public </td><td> 2 </td><td> american literature </td><td> n </td><td> n </td><td> 8 </td><td> 6984 </td><td> 4368.417857 </td> </tr>
USA </td><td> Illinois </td><td> Cook </td><td> Chicago </td><td> x1 </td><td> elementary </td><td> public </td><td> 2 </td><td> british literature </td><td> n </td><td> n </td><td> 4 </td><td> 3977 </td><td> 3861.683941 </td> </tr>
USA </td><td> Illinois </td><td> Cook </td><td> Chicago </td><td> x1 </td><td> elementary </td><td> public </td><td> 2 </td><td> geography </td><td> y </td><td> n </td><td> 5 </td><td> 5358 </td><td> 1727.575547 </td> </tr>
USA </td><td> Illinois </td><td> Cook </td><td> Chicago </td><td> x1 </td><td> elementary </td><td> public </td><td> 3 </td><td> biology </td><td> y </td><td> n </td><td> 6 </td><td> 4490 </td><td> 4241.514602 </td> </tr>
USA </td><td> Illinois </td><td> Cook </td><td> Chicago </td><td> x1 </td><td> elementary </td><td> public </td><td> 3 </td><td> british literature </td><td> n </td><td> y </td><td> 9 </td><td> 3476 </td><td> 2176.995858 </td> </tr>
USA </td><td> Illinois </td><td> Cook </td><td> Chicago </td><td> x1 </td><td> elementary </td><td> public </td><td> 3 </td><td> PE </td><td> y </td><td> y </td><td> 7 </td><td> 6060 </td><td> 713.4806136 </td> </tr>
USA </td><td> Illinois </td><td> Cook </td><td> Chicago </td><td> x1 </td><td> elementary </td><td> public </td><td> 4 </td><td> biology </td><td> y </td><td> y </td><td> 8 </td><td> 5059 </td><td> 2269.706168 </td> </tr>
USA </td><td> Illinois </td><td> Cook </td><td> Chicago </td><td> x1 </td><td> elementary </td><td> public </td><td> 4 </td><td> music </td><td> n </td><td> y </td><td> 8 </td><td> 3250 </td><td> 583.2956503 </td> </tr>
USA </td><td> Illinois </td><td> Cook </td><td> Chicago </td><td> x1 </td><td> elementary </td><td> public </td><td> 4 </td><td> PE </td><td> n </td><td> y </td><td> 3 </td><td> 3945 </td><td> 577.6461806 </td> </tr>
USA </td><td> Illinois </td><td> Cook </td><td> Chicago </td><td> x1 </td><td> elementary </td><td> public </td><td> 5 </td><td> american literature </td><td> n </td><td> y </td><td> 7 </td><td> 4083 </td><td> 2853.53736 </td> </tr>
USA </td><td> Illinois </td><td> Cook </td><td> Chicago </td><td> x1 </td><td> elementary </td><td> public </td><td> 5 </td><td> music </td><td> y </td><td> y </td><td> 8 </td><td> 3502 </td><td> 1257.361273 </td> </tr>
USA </td><td> Illinois </td><td> Cook </td><td> Chicago </td><td> x1 </td><td> elementary </td><td> public </td><td> 5 </td><td> PE </td><td> n </td><td> n </td><td> 3 </td><td> 5234 </td><td> 4075.859156 </td> </tr>
Table 3 output should look like this:
</th><th> type </th><th> type2 </th><th> level </th><th> number of students </th><th> class </th><th> homework </th><th> number of teachers </th><th> tests </th><th> planned budget </th><th> actual budget </th><th> tests/student </th><th> $planed per student </th><th> actual $/student </th> </tr>
however every query i ran i get either duplicate number of students which than either over counts #students/teacher or planned$/student, actual$/student.
I need that if i were to filter based on these three dimensions:
-class
-tests
-homework
the
-#teachers/student
-actual$/student
-planned$/student
should be to the lowest order of students per class
i tried to transpose the 3 fields that are on the table 2 only however the problem is that when i plug it in into tableau i am not able to filter them right.
1st time post. I'm running a Selenium IDE script in which populated account information is supposed to be verified. I'm using verifyText to do this however I'm getting the error that the actual did not match the value I have set. In this case, I'm hardcoding the value because I know what to expect and I'm copying the value straight from the site. I've attempted to copy the values into a text editor to see if there are any hidden characters but haven't found any. There are 5 fields on the page this happening with.
Here is the IDE script for the rows and the logs. I've exchanged the actual client info with variables
<tr>
<td>verifyText</td>
<td>id=NAME_ON_ACCOUNT</td>
<td><AcctName></td>
</tr>
<tr>
<td>verifyText</td>
<td>id=ADDRESS_1</td>
<td><AcctAddress></td>
</tr>
<tr>
<td>verifyText</td>
<td>id=CITY_PROVINCE</td>
<td><AcctCity></td>
</tr>
<tr>
<td>verifyText</td>
<td>id=ZIP</td>
<td><AcctZip></td>
</tr>
<tr>
<td>verifyText</td>
<td>id=PHONE</td>
<td><AcctPhone></td>
</tr>
and here are the logs
[info] Executing: |verifyText | id=NAME_ON_ACCOUNT | <AcctName> |
[error] Actual value '' did not match '<AcctName>'
[info] Executing: |verifyText | id=ADDRESS_1 | <AcctAddress> |
[error] Actual value '' did not match '<AcctAddress>'
[info] Executing: |verifyText | id=CITY_PROVINCE | <AcctCity> |
[error] Actual value '' did not match '<AcctCity>'
[info] Executing: |verifyText | id=ZIP | <AcctZip> |
[error] Actual value '' did not match '<AcctZip>'
[info] Executing: |verifyText | id=PHONE | <AcctPhone> |
[error] Actual value '' did not match '<AcctPhone>'
You cannot get the text from an input field, but you can store its "value" attribute, then check that this value equals a certain text. For example:
storeAttribute | id=NAME_ON_ACCOUNT#value | nameValue
verifyEquals | ${nameValue} | <AcctName>
I am developing my webpage with the ttnews plugin, and I edited the tt_news_v3_template.html so it shows the first 3 news in my main page. I want it with this format, so I updated the ###TEMPLATE_LIST3###. Thats the new code
<!-- ###TEMPLATE_LIST3### begin
This is the template for the list of news in the archive or news page or search
-->
<div class="news-list3-container">
###NEWS_CATEGORY_ROOTLINE###
<!-- ###CONTENT### begin
This is the part of the template substituted with the list of news:
-->
<!-- ###NEWS### begin -->
<article class="box">
<div class="image-border">
<a href="#" class="image image-left">
<!--###LINK_ITEM###-->###NEWS_IMAGE###<!--###LINK_ITEM###-->
</a>
</div>
<h2><!--###LINK_ITEM###-->###NEWS_TITLE###<!--###LINK_ITEM###--></h2>
<p class="subtitle">###NEWS_SUBHEADER###</p>
<p>###NEWS_CONTENT###</p>
<p>###CATWRAP_B### ###TEXT_CAT### ###NEWS_CATEGORY### ###NEWS_CATEGORY_IMAGE### ###CATWRAP_E###</p>
<p>
Ver Más
</p>
</article>
<!-- ###NEWS### end-->
<!-- ###NEWS_1### begin -->
<div class="row" style="margin-top:15px; display: inline-block; width:100%">
<section class="box" style="width:49%; float:left">
<h2><!--###LINK_ITEM###-->###NEWS_TITLE###<!--###LINK_ITEM###--></h2>
<p class="subtitle">###NEWS_SUBHEADER###</p>
<div class="image-border">
<a href="#" class="image image-full">
<!--###LINK_ITEM###-->###NEWS_IMAGE###<!--###LINK_ITEM###-->
</a>
</div>
<p>###NEWS_CONTENT###</p>
<p>###CATWRAP_B### ###TEXT_CAT### ###NEWS_CATEGORY### ###NEWS_CATEGORY_IMAGE### ###CATWRAP_E###</p>
<p>
Ver Más
</p>
</section>
<!-- ###NEWS_1### end-->
<!-- ###NEWS_2### begin -->
<section class="box" style="width:49%; float:left">
<h2><!--###LINK_ITEM###-->###NEWS_TITLE###<!--###LINK_ITEM###--></h2>
<p class="subtitle">###NEWS_SUBHEADER###</p>
<div class="image-border">
<a href="#" class="image image-full">
<!--###LINK_ITEM###-->###NEWS_IMAGE###<!--###LINK_ITEM###-->
</a>
</div>
<p>###NEWS_CONTENT###</p>
<p>###CATWRAP_B### ###TEXT_CAT### ###NEWS_CATEGORY### ###NEWS_CATEGORY_IMAGE### ###CATWRAP_E###</p>
<p>
Ver Más
</p>
</section>
<!-- ###NEWS_2### end-->
<!-- ###CONTENT### end -->
</div>
</div>
but when I see the page, the two first news are displayed well, with the divs and the labels that I assigned, but the last new duplicate the structure of the first new, instead of using it own. This is the generated code
<div class="news-list3-container">
<article class="box">
<div class="image-border">
<a href="#" class="image image-left">
</a>
</div>
<h2>Noticia 3</h2>
<p class="subtitle"></p><p>subtitle noticia 3<span class="news-list-morelink">[Leer más]</span></p><p></p>
<p>texto noticia 3</p>
<p></p><div class="news-list-category"> Categoría: News </div><p></p>
<p>
Ver Más
</p>
</article>
<div class="row" style="margin-top:15px; display: inline-block; width:100%">
<section class="box" style="width:49%; float:left">
<h2>dsadasdasd</h2>
<p class="subtitle"></p><p>dasdasdasdas<span class="news-list-morelink">[Leer más]</span></p><p></p>
<div class="image-border">
<a href="#" class="image image-full">
</a>
</div>
<p><span style="font-family: sans-serif; line-height: 17.265625px; background-color: rgb(249, 249, 249); ">Lorem ipsum ad his scripta blandit partiendo, eum fastidii accumsan euripidis in, eum liber hendrerit an. Qui ut wisi vocibus suscipiantur, quo dicit ridens inciderint id. Quo mundi lobortis reformidans eu, legimus senserit definiebas an eos. Eu sit tincidunt incorrupte definitionem, vis mutat affert percipit cu, eirmod consectetuer signiferumque eu per. In usu latine equidem dolores. Quo no falli viris intellegam, ut fugit veritus placerat per. Ius id vidit volumus mandamus, vide veritus democritum te nec, ei eos debet libris consulatu. No mei ferri graeco dicunt, ad cum veri accommodare. Sed at malis omnesque delicata, usu et iusto zzril meliore. Dicunt maiorum eloquentiam cum cu, sit summo dolor essent te. Ne quodsi nusquam legendos has, ea dicit voluptua eloquentiam pro, ad sit quas qualisque. Eos vocibus deserunt quaestio ei. Blandit incorrupte quaerendum in quo, nibh impedit id vis, vel no nullam semper audiam. Ei populo graeci consulatu mei, has ea stet modus phaedrum. Inani oblique ne has, duo et veritus detraxit. Tota ludus oratio ea mel, offendit persequeris ei vim. Eos dicat oratio partem ut, id cum ignota senserit intellegat. Sit inani ubique graecis ad, quando graecis liberavisse et cum, dicit option eruditi at duo. Homero salutatus suscipiantur eum id, tamquam voluptaria expetendis ad sed, nobis feugiat similique usu ex. Eum hinc argumentum te, no sit percipit adversarium, ne qui feugiat persecuti. Odio omnes scripserit ad est, ut vidit lorem maiestatis his, putent mandamus gloriatur ne pro. Oratio iriure rationibus ne his, ad est corrumpit splendide. Ad duo appareat moderatius, ei falli tollit denique eos. Dicant evertitur mei in, ne his deserunt perpetua sententiae, ea sea omnes similique vituperatoribus. Ex mel errem intellegebat comprehensam, vel ad tantas antiopam delicatissimi, tota ferri affert eu nec. Legere expetenda pertinacia ne pro, et pro impetus persius assueverit. Ea mei nullam facete, omnis oratio offendit ius cu. Doming takimata repudiandae usu an, mei dicant takimata id, pri eleifend inimicus euripidis at. His vero singulis ea, quem euripidis abhorreant mei ut, et populo iriure vix. Usu ludus affert voluptaria ei, vix ea error definitiones, movet fastidii signiferumque in qui. Vis prodesset adolescens adipiscing te, usu mazim perfecto recteque at, assum putant erroribus mea in. Vel facete imperdiet id, cum an libris luptatum perfecto, vel fabellas inciderint ut. Veri facete debitis ea vis, ut eos oratio erroribus. Sint facete perfecto no vel, vim id omnium insolens. Vel dolores perfecto pertinacia ut, te mel meis ullum dicam, eos assum facilis corpora in. Mea te unum viderer dolores, nostrum detracto nec in, vis no partem definiebas constituam. Dicant utinam philosophia has cu, hendrerit prodesset at nam, eos an bonorum dissentiet. Has ad placerat intellegam consectetuer, no adipisci mandamus senserit pro, torquatos similique percipitur est ex. Pro ex putant deleniti repudiare, vel an aperiam sensibus suavitate. Ad vel epicurei convenire, ea soluta aliquid deserunt ius, pri in errem putant feugiat. Sed iusto nihil populo an, ex pro novum homero cotidieque. Te utamur civibus eleifend qui, nam ei brute doming concludaturque, modo aliquam facilisi nec no. Vidisse maiestatis constituam eu his, esse pertinacia intellegam ius cu. Eos ei odio veniam, eu sumo altera adipisci eam, mea audiam prodesset persequeris ea. Ad vitae dictas vituperata sed, eum posse labore postulant id. Te eligendi principes dignissim sit, te vel dicant officiis repudiandae. Id vel sensibus honestatis omittantur, vel cu nobis commune patrioque. In accusata definiebas qui, id tale malorum dolorem sed, solum clita phaedrum ne his. Eos mutat ullum forensibus ex, wisi perfecto urbanitas cu eam, no vis dicunt impetus. Assum novum in pri, vix an suavitate moderatius, id has reformidans referrentur. Elit inciderint omittantur duo ut, dicit democritum signiferumque eu est, ad suscipit delectus mandamus duo. An harum equidem maiestatis nec. At has veri feugait placerat, in semper offendit praesent his. Omnium impetus facilis sed at, ex viris tincidunt ius. Unum eirmod dignissim id quo. Sit te atomorum quaerendum neglegentur, his primis tamquam et. Eu quo quot veri alienum, ea eos nullam luptatum accusamus. Ea mel causae phaedrum reprimique, at vidisse dolores ocurreret nam.</span></p>
<p></p><div class="news-list-category"> Categoría: News </div><p></p>
<p>
Ver Más
</p>
</section>
<article class="box">
<div class="image-border">
<a href="#" class="image image-left">
</a>
</div>
<h2>Noticia 2</h2>
<p class="subtitle"></p><p>subtitulo de la noticia 2<span class="news-list-morelink">[Leer más]</span></p><p></p>
<p>Contenido de la noticia 2</p>
<p></p><div class="news-list-category"> Categoría: News, Blog </div><p></p>
<p>
Ver Más
</p>
</article>
</div>
</div>
Note that the 3th new is wrapped in a article class="box" like the first new, instead of being using it own structure. I googled a lot and check the labels, but I have no clue about how to solve it. Someone can give me some advices or tips?
I am using typo3 4.5 and tt_news 3.0.1
Thanks!
You have to set
plugin.tt_news.alternatingLayouts = 3
In your Typoscript Setup. tt_news will use only 2 alternating Layouts by default.