Title: subcan's Replies | WordPress.org

---

# subcan

  [  ](https://wordpress.org/support/users/subcan/)

 *   [Profile](https://wordpress.org/support/users/subcan/)
 *   [Topics Started](https://wordpress.org/support/users/subcan/topics/)
 *   [Replies Created](https://wordpress.org/support/users/subcan/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/subcan/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/subcan/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/subcan/engagements/)
 *   [Favorites](https://wordpress.org/support/users/subcan/favorites/)

 Search replies:

## Forum Replies Created

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

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Customizr] Background to go behind Menu](https://wordpress.org/support/topic/background-to-go-behind-menu/)
 *  [subcan](https://wordpress.org/support/users/subcan/)
 * (@subcan)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/background-to-go-behind-menu/#post-4952070)
 * I am glad that you were able to work it out.
 * I use the ‘inspect element’ feature in google chrome to adjust things to see 
   what happens and what I need to change in my css files.
 * If you want the footer to be completely transparent (so your primary background
   shows through, just change the following:
 *     ```
       footer#footer .colophon {
       background-color: transparent;
       background: transparent;
       }
       ```
   
 * Had to add the `background: transparent;` dealeo to get rid of that grey background.
 * I think it looks better without the white footer… but then that is your choice.
 * On another topic… another thing you could do is get rid of or change the “designed
   by” in footer.
 * This can be done by editing the ‘class-footer-footer_main.php’ file in the parts
   directory.
 * It would be better to copy that file to the same directory in a child theme first
   though… then edit it there. Then if there is an update, it won’t affect your 
   changes.
 * The function you want to edit is:
 *     ```
       function tc_colophon_center_block() {
   
           	echo apply_filters(
           		'tc_credits_display',
           		sprintf('<div class="%1$s">%2$s</div>',
       	    		apply_filters( 'tc_colophon_center_block_class', 'span4 credits' ),
       	    		sprintf( '<p> &middot; &copy; %1$s <a href="%2$s" title="%3$s" rel="bookmark">%3$s</a> &middot; Designed by %4$s &middot;</p>',
       					    esc_attr( date( 'Y' ) ),
       					    esc_url( home_url() ),
       					    esc_attr(get_bloginfo()),
       					    '<a href="'.TC_WEBSITE.'">Themes & Co</a>'
       				)
           		)
           	);
           }
       ```
   
 * You can remove the whole desinged by dealeo by changing the function to:
 *     ```
       function tc_colophon_center_block() {
   
           	echo apply_filters(
           		'tc_credits_display',
           		sprintf('<div class="%1$s">%2$s</div>',
       	    		apply_filters( 'tc_colophon_center_block_class', 'span4 credits' ),
       	    		sprintf( '<p> &middot; &copy; %1$s <a href="%2$s" title="%3$s" rel="bookmark">%3$s</a> &middot;</p>',
       					    esc_attr( date( 'Y' ) ),
       					    esc_url( home_url() )
       				)
           		)
           	);
           }
       ```
   
 * I just removed the code portions for that string. Compare the two and you will
   see it.
 * Anyways, off topic… and unasked…lol
 * subcan
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Customizr] Background to go behind Menu](https://wordpress.org/support/topic/background-to-go-behind-menu/)
 *  [subcan](https://wordpress.org/support/users/subcan/)
 * (@subcan)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/background-to-go-behind-menu/#post-4952046)
 * Hey there mikeschafer,
 * I just did some editing with ‘inspect’ and made background throughout your page
   with following css changes. Just add these to you child theme css (or css dealeo
   in ‘theme customize’)
 *     ```
       .tc-header {
       background: transparent;
       }
       footer#footer .colophon {
       background-color: transparent;
       }
       /* to add a transition to footer */
       footer#footer {
       border-top: 5px solid #e9eaee;
       }
       ```
   
 * I hope that helps and is what you were looking for?
 * subcan
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[NextGEN Download Gallery] no images were found](https://wordpress.org/support/topic/no-images-were-found-10/)
 *  Thread Starter [subcan](https://wordpress.org/support/users/subcan/)
 * (@subcan)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/no-images-were-found-10/#post-4503048)
 * Hey Ross,
 * Thanks for the input.
 * I have switched to the NextCellent Gallery… and yes it works.
 * I have a hard time understanding why developers works so hard, only to breaks
   functionality that their users need. It would be understandable if they incorporated
   that functionality into their updates.
 * This is still only a basic gallery though. Now I cannot get the image preview
   to work. I either do image preview or have the thumbs and slideshow available…
   but not all three. A little frustrating.
 * I am looking at changing my photo gallery portion of my site to Piwigo and linking
   it to a tab in WordPress. I have been working on getting my site up for a couple
   of weeks and this photo gallery has been a real issue with WordPress. I understand
   that that is a weakness in WordPress. No biggy.
 * Thanks for your help and advice.
 * SUB

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