Project

General

Profile

Bug #74440

Updated by Markus Klein almost 8 years ago

It seems that somewhere in TYPO3 7.x the .csc-header class went missing from tt_content.textpic which caused some massive problems when I just updated a project from 6.x to 7.x. 

 <pre> 
 tt_content.textpic @tt_content.textpic = COA 
 tt_content.textpic { 
	 10 = COA 
	 10.if.value = 25 
	 10.if.isLessThan.field = imageorient 
	 10.10 = < lib.stdheader 

	 20    = < tt_content.image.20 
	 20 { 
		 text.10 = COA 
		 text.10 { 
			 if.value = 24 
			 if.isGreaterThan.field = imageorient 
			 10 = < lib.stdheader 
			 10.stdWrap.dataWrap = <div class="csc-textpicHeader csc-textpicHeader-{field:imageorient}">|</div> 
		 } 
		 text.20 = < tt_content.text.20 
		 text.wrap = <div class="csc-textpic-text"> | </div> 
	 } 
 } 
 </pre> }@ 

 I've attached a patch that fixes this issue..

Back