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> · © %1$s <a href="%2$s" title="%3$s" rel="bookmark">%3$s</a> · Designed by %4$s ·</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> · © %1$s <a href="%2$s" title="%3$s" rel="bookmark">%3$s</a> ·</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