This laptop was an old Dell but had 64-bit processor and 4gb RAM so i upgraded it to windows 10. If you send it to sleep and then wake it up, the screen appears. This is obvously a driver issue.
These are my notes on what I tried using the offcial driver:
Solution
This do not give you all the acceleration of the graphics card but it does not suffer from the blacked out screen issue.
The following error usually occurs sometimes when you move your website with kunena or you change templates.
0 load error: failed to find /home/xxxxxx/public_html/components/com_kunena/template/crypsis/assets/less/crypsis.less
Solutions
This show you the default layout for the gantry Helium Theme (Base Outline) and the section names.
These are the steps I took to create my first template with the layout and module positions I want. Based on the Gantry5 Helium Theme. These are not instructions but someone might find it useful if you are going through the same thought process.
Step 1
Step 2
Step 3
Step 4
Step 5
Outlines are equivalent to Joomla templates and are installed in Joomla as templates. Outlines all inherit from a ‘Base Oultine’ which is not visible in Joomla as a template. This inheritance can be turned off.
It is recommend to alter the ‘Base Outline’ for global changes and if you are only going to have one arrangement then you only ever need to adjust this template. The outline ‘Helium – Default’ is configured to inherit all of the ‘Base – outline’ so it would be this that you use as you joomla template. The ‘Helium – Home – Particles’ is just a demo showing particles (which only exist in Gantry) functioning on a Gantry template/outline.
Once you have loaded the layout in outlines the edits to the file /custom/layouts/example1.yaml will not work as this is only a preset file and not the actual the layout/template file.
When you add a layout from a preset what happens is:
You can edit these files and you layout will change.
These are styles that are accessible via the dropdown menus in gantry admin should as module styling.
Gantry’s documentation for noobies is not great because you have no idea what it means except that it is a template framework of some description. If you follow the process below Gantry will appear easy to use.
One of the first questions is how can I change the styiling of the theme. This is where you can find the code you want. It is recommend that you alter everything using Custom CSS and override rules.
This is a collection of notes and links
There are 3 methods for adding custom CSS to gantry
This issue is posted on GitHub
/*-- Fix breadcrumb arrow going to the top --*/ /*-- the first icon in breadcrumbs is at the top caused by below --*/ /* http://localhost/media/gantry5/engines/nucleus/css-compiled/joomla.css:206 [class^="icon-"], [class*=" icon-"] { margin-right: .25em; line-height: 14px; } /* http://localhost/media/jui/css/icomoon.css:17 [class^="icon-"], [class*=" icon-"] { display: inline-block; width: 14px; height: 14px; *margin-right: .3em; line-height: 14px; } /* http://localhost/templates/g5_helium/custom/css-compiled/helium_18.css:26 font-size: 1rem; line-height: 2; } */ /* Fix only second identifier might be needed.*/ .breadcrumb [class^="icon-"], .breadcrumb [class*=" icon-"] { line-height: 2; }
This will give you a standard horizontal DIV menu.
/* Horizontal DIV menu */ /* removes the vertical seperators */ .moduletable .nav.menu.nav-pills { padding-bottom: 0; /* border: 1px solid #e0e0e5; - white border */ border: none; } /* Corrects Spacing */ .moduletable .nav.menu.nav-pills li { margin-bottom: 0; margin-right: 0.625rem; border-bottom: none; }
Make the menu thinner (ideal for top-bar menus)
/*-- Make Nav Pills Menu Thinner --*/ /* Remove padding from menu wrapper */ .moduletable .nav.menu { padding: 0; } /* Remove the padding at the bottom of the <li> */ .moduletable .nav.menu li{ padding-bottom: 0; } /* remove margin and padding from the link */ .nav-pills > li > a { padding-top: 2px; padding-bottom: 2px; padding-right: 2px; padding-left: 2px; margin-top: 2px; margin-bottom: 2px; margin-right: 2px; line-height: 10px; }
/* Gantry changes the link and background colour when the link is selected - this corrects that */ .nav-pills > .active > a, .nav-pills > .active > a:hover, .nav-pills > .active > a:focus { color: inherit; background-color: inherit; }
/* Add space between icon and text for the link item */ .nav-pills .fa::before { margin-right: 5px; }
/* when screen is too small, center the menu and prevent going under the hamburger */ @media only all and (max-width: 47.938rem) { #g-top-bar .g-content { text-align: center; /* padding: 0.45rem; */ } }
/* style <li> items */ .nav-pills li a, .nav-pills li a:hover, .nav-pills li a:focus { font-size: 1.1rem; font-weight: bold; /*white-space: normal; overflow-wrap: break-word; word-wrap: break-word; word-break: break-all;*/ }