문제

Im working with the News(news) Extension for TYPO3 v. 6.1 Fluid/Extbase. it's working fine, but it's using the extension css file news-basic.css, how can I tell the extension that I don't want to use that Css file but I want to use my own main.css, that I allready is including.

I have read that it can be excluded, but I can't find anywhere to do that.

The issue is that some of the style in the css is making some issues in my main css. Its a funny comment: "."; tag, but I don't need the extensions css file at all.

Can someone guide me to a solution, how to exclude the EXT News added news-basic.css file.

도움이 되었습니까?

해결책

There is a constant for this:

plugin.tx_news.settings.cssFile = EXT:news/Resources/Public/Css/news-basic.css

Just overwrite it with the path to your css file in the constants section of your root template like this:

plugin.tx_news.settings.cssFile = path/to/file.css

Or remove the whole css file output by adding that instead:

plugin.tx_news.settings.cssFile >
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top