Quote:
Originally Posted by knowledgecrawler
How can we align the images / stretch them to fit width in recipe?
i tried with some CSS, but out of luck...
PHP Code:
extra_css = '''
.main-image{
width: 100%;
} '''
|
try something like
.main-image{display: block;margin-left: auto;margin-right: auto;width:100%;}