GoClixy is highly customizable, you can easily design a new template. You can also modify various elements and customize existing designs so it looks and functions the way you want.
GoClixy each web page is divided into three parts:
A layout is a collection of widgets or HTML code that is common for multiple pages. For instance, you could have a Navbar, Left, Right and Footer blocks in a Layout that is common to all pages.
View refers to the arrangement of text and graphics on a page. This is specific to a page.
A widget is a small block of code that performs a specific function. You can add these widgets in the Layouts and the Views web pages. These are designed to provide a simple and easy-to-use way of giving design and structure control of the GoClixy theme to the user. For example, you can create a block for categories and call it in Home and View page to enhance its functionalities.
Use the code below to add your widget in a View/Layout page.
<?php echo theme_view('widgets/packages/<NAME OF THE WIDGET>', PARAMETERS?>
E.g.
<?php echo theme_view('widgets/packages/_pkg_widget_22', array('type_id' => 0,'cols' => 3));?>
After adding a widget, click the Star icon to set the View/Layout page to default to recompile the widget specific CSS and JS files.
After making a change to the CSS or JS code, you must set the page to default to recompile the CSS and JS files. This is the page where you have used the widget. You can also set the theme to default, but we suggest that you set the page to default instead of recompiling the entire theme's CSS and JS files.
For instance, if you have used the wigdet in the Home Page, go to Developer->Themes, go the Views tab and search for the Home keyword. The row with a yellow star is the active one, click the Star icon to regenerate the CSS and JS files.