我在TYPO3 6.2.14中使用news扩展名。
两件事:
1)如何在新闻列表视图中更改图像大小?我需要这里的图像是300px宽,但设置只有最大宽度选项。将maxWidth设置为300会使我目前的可变图像宽度介于150和200之间。
2)我需要列表视图图像位于其标题之上。我已经编辑了List.html文件,但我不知道如何使扩展名使用我的文件而不是默认文件。
答案 0 :(得分:1)
1)您可以更改Partials / FalMediaImage.html中的<f:image>
以使用宽度和高度。这是documentation。或者您可以定义正确的最大宽度和更大的最大高度并上传大图像。
2)你可以在TypoScript中使用documentation。
plugin.tx_news {
view {
templateRootPaths >
templateRootPaths {
0 = EXT:news/Resources/Private/Templates/
1 = fileadmin/templates/ext/news/Templates/
}
partialRootPaths >
partialRootPaths {
0 = EXT:news/Resources/Private/Partials/
1 = fileadmin/templates/ext/news/Partials/
}
layoutRootPaths >
layoutRootPaths {
0 = EXT:news/Resources/Private/Layouts/
1 = fileadmin/templates/ext/news/Layouts/
}
}
}