Hi Everyone,
It has been about a week now that I have been struggling with some issues to use FlexiContent with GavickPro template, as it was mention in this forum, these issues are not related at all with FlexiContent but with GavickPro template itself, I have been with the GavickPro guys for about a week to sort all these out and wanted to share it here just in case anyone else got the same issues with GK templates.
If you click on the 'Add New Item' menu link with FlexiContent, you'll see that you'll have a complete blank page, even all modules disappears!
Solution:
FC uses class .clear which affect GK template elements like #mainContent and #gkTopNav because they are using class clear too. And it is overrided by rules from flexicontent. To fix it please go to yourtemplate/layouts/default.php and change all clear classes to gkClear.
Then please go to css/layout.css and change (line 17)
Code:
.clear {
clear: both;
}
to
Code:
.gkClear {
clear: both;
}
Just in case please check that all files in yourtemplate/layout/blocks if "clear" class isn't use too.
Actually, these files do also use the clear class and need to be modified to .gkClear
yourtemplate/layouts/blocks/tools/login.php
yourtemplate/layouts/blocks/tools/register.php
yourtemplate/layouts/blocks/bottom1.php
yourtemplate/layouts/blocks/bottom2.php
yourtemplate/layouts/blocks/top.php
These few steps will solve the issues between FC and GK templates, I posted this here so that anyone facing the same issues does not have to wait for forum moderators on GK website to answer them after many days.