aaronblrt11 Hi
Thanks for your interest in our new GK framework. Below are my answers for your inquiries:
aaronblrt11 For one the template width on large screens, I want to make it 100% with a cutoff of 1440px as max-width. But I set it in custom css file but the template does not read it. It still has the white space on the side of the content in the main body.
Could you share the custom css code you added? Make sure that you add it into this file: /templates/gk_blank/media/css/custom.css
aaronblrt11 Also how does one add new positions to the template?
You can simply create a new module position as Joomla suggest here, then work with Layouts
and Blocks
of template like we already mentioned in this docs: https://www.gavick.com/joomla-templates/gk-framework/install#gk-template-layout-system
Basically, the template will load the layout in this folder: /templates/gk_blank/layouts/
, there are 2 primary layouts by default: default & home. A layout will contain different blocks, it will load blocks defined in this folder: templates/gk_blank/layouts/blocks
And this each block, you can call the module positions you wish, such as:
<?php if($doc->countModules('masthead') && !GK_COM_CONFIG && !GK_COM_USERS): ?>
<div id="gk-masthead" class="gk-masthead">
<jdoc:include type="modules" name="masthead" style="none" />
</div>
<?php endif; ?>
This is how a block loads the 'masthead' position.
To keep your custom changes when updating new version of template, you can duplicated these primary layout files: default.php or home.php to have a new layout.
Regards