Hello,
I need to customize a css style ... the inspector show me this CSS at frontend:
https://www.company.com/pub/static/version1561389173/frontend/bigone/bigone4/de_DE/css/style.css
But I find no style.css on the server. bigone4 ist the theme, based on bigone4default.
How can I find the css?
Thank you!
Hi @hanhoe ,
You can found your css file under this folder:
app/design/frontend/bigone/web/css/bigone4/styles.css or you can found inside this folder. app/design/frontend/bigone/web/css/
I hope it will work.
Hello @Vimal Kumar
well, I did not found this css file.
Firefox show me this style:
.item .item-inner .product-item-info .product-item-details .box-hover .add-to-links .tocompare { display: inline-block; }
I search from magento root with:
grep -r ".item .item-inner .product-item-info .product-item-details .box-hover .add-to-links .tocompare {"
and the only result is:
pub/static/frontend/bigone/bigone4/de_DE/css/style.css
but this will be created after I "deploy" ... right?
Could it be that the style.css will merge with other styles together?
I run this commands to clean and create anything new:
#!/bin/bash chmod -R 0777 var/ pub/ generated/ rm -rf var/cache/* var/view_preprocessed/* generated/* pub/static/* php -d memory_limit=2280M bin/magento setup:upgrade php -d memory_limit=2280M bin/magento setup:di:compile php -d memory_limit=2280M bin/magento setup:static-content:deploy de_AT de_DE en_US php bin/magento cache:flush php bin/magento indexer:reindex chmod -R 0777 var/ pub/ generated/
But the frondend has still this style!