After upgrading to Joomla 4 I had a layout issue on Home Page. I think some position exceeding max width allowed. On Home Page, if you scroll down you will see that there is a massive space. Could you please help me to solve this issue?
Layout issue on Home Page
Hi
You can try with this override css:
#gkSidebar .nspArt div {overflow: inherit;}
- Edited
The problem has been solved. A friend helped me with following update. Do you think I should keep this change or try what you suggested?
"/templates/gk_news/css/gk.stuff.css" at line 221
from
.nspArt .fleft {
float: left;
}
to
.nspArt .fleft {
float: none!important;
}
Try to add parent div / class so that the code doesn't affect other modules. Because the .nspArt .left class is used in other modules too.