Tech-Dom
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Change the footer designed by linkI totally agree that child themes should be used for modifications. Therefore, my previous post would be summarized as follows.
- Download customizr/parts/class-footer-footer_main.php
- Replace
<a href="‘.TC_WEBSITE.’">Themes & Co</a>with your info (note the single quotes to be removed) - Example:
<a href="http://YourSite.com" target="_blank">Your Site Name</a> - Upload the modified file to your child theme, – customizr_child_folder/parts/class-footer-footer_main.php
Forum: Themes and Templates
In reply to: [Customizr] Trouble with changing the layout on home pageI am not sure what changes you want to make. If you want to change the number of columns to other than three, then edit this page – themes/customizr/parts/class-content-featured_pages.php. On line 37 this sets to three colums –
//set the areas array
$areas = array ( ‘one’ , ‘two’ , ‘three’ );
If you want two columns, delete the third, as in –
$areas = array ( ‘one’ , ‘two’ );The problem then becomes the width of the columns. This is set in the css file for the theme color you are using. For example, in customizr/inc/css/red.ccc on line 6634 span4 sets the width. You can change this to a different span(x) with the width you want or edit the widths on span4, or whatever span(x) you are using.
I hope you are not looking for major changes to the layout. Good luck!
TechDom