subcan
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] Background to go behind MenuI 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
Forum: Themes and Templates
In reply to: [Customizr] Background to go behind MenuHey 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
In reply to: [NextGEN Download Gallery] no images were foundHey 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