Articles Image In Konstra Template - Question | JoomShaper

Articles Image In Konstra Template

Miguel

Miguel

Template 2 years ago

Hi there! I´m using konstra template with joomla 4, and i was wondering if there´s a way of changing the image´s size in the article? I want it to be the screen width and behind the title, instead of half of the screen width and under the title, is there a way of changing it? Here is the site URL Thanks!

0
1 Answers
Rashida Rahman
Rashida Rahman
Accepted Answer
Support Agent 2 years ago #39566

Hi there! Please put the following code in your custom CSS:

@media (min-width: 768px){
.article-header-wrap .col-md-8 {
    flex: 0 0 100%;
    width: 100%;
}
}
.article-details .article-full-image{
    margin:-100px 0px 0px 0px;
    padding:0;
}

Let me know if it searves your purpose.

Note: Path towards custom CSS: Extensions>Templates>Styles> Click on your current default template name then choose Template Options. Then find custom CSS within the custom code.

Best Regards

0