at http://42pulse.com/creativity/index.php/en/ you can find the English version of a multilingual (EN, DE, RO) website.
The IDs of the menu item to the home page in each language are 743 (en), 744 (de) and 745 (ro)
I managed to solve the issue of modules being displayed next to each other rather than below each other with the information I found in the forum and adding the rules in template configuration:
743=onepage
744=onepage
745=onepage
However, I still face the problem, that a section for 'featured articles' is being displayed (the header reads 'Home', as you can see by scrolling down) between the 'What We Do' and 'About' modules.
I tried the approach described here https://www.gavick.com/documentation/joomla/how-to-disable-content-on-selected-joomla-pages, but to no avail. According to this, I would have to add the rule 'noMainbody' to the respective ID and enter some changed in the override.css.
Problem is, that I don't know what ID to take. 'Featured Articles' is not a specific page. So I tried it by using the ID of the menu items like this:
743=noMainbody
But this does not have any effect. 'noMainbody' does not show up in the source code.
Then I added the suffix 'noMainbody' to the menu item properties (in 'Page Class' under 'Page Display'). This causes the source code to include this:
- Code: Select all
<div id="gkMainbody">
<section class="blog-featurednoMainbody" itemscope itemtype="http://schema.org/Blog">
<header>
<h1>Home</h1>
</header>
</section>
</div>
I enabled CSS override and added this:
- Code: Select all
.noMainbody #gkMainbody { display: none !important}
No effect, so I tried this:
- Code: Select all
.blog-featurednoMainbody #gkMainbody { display: none !important}
Again, no effect.
So this is where I am now. Would appreciate your help in this matter.