Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter Tech-Dom

    (@tech-dom)

    I totally agree that child themes should be used for modifications. Therefore, my previous post would be summarized as follows.

    1. Download customizr/parts/class-footer-footer_main.php
    2. Replace<a href="‘.TC_WEBSITE.’">Themes & Co</a>with your info (note the single quotes to be removed)
    3. Example:<a href="https://YourSite.com" target="_blank">Your Site Name</a>
    4. Upload the modified file to your child theme, – customizr_child_folder/parts/class-footer-footer_main.php

    I 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

Viewing 2 replies - 1 through 2 (of 2 total)