FAQ Topic Elbee Elgee

Questions related to the Elbee Elgee theme framework.

Q: How Do I Remove The Featured Images From Posts?

Make sure you’re using a child theme Add the following code to your child theme’s `functions.php`: function lbc_remove_postimage(){ remove_action( ‘lblg_before_itemtext’, ‘lblg_the_postimage’ ); } add_action( ‘init’, ‘lbc_remove_postimage’ ); Reload the page and check to make sure it worked.

Q: “How Do I Remove The 50% Shading In The Header?”

On or around line 50 in styles, div#titledesc is defined. You may Recommended override them in your child theme’s style.css using the following declaration: #header div#titledesc{ background: transparent; } …or Not Recommended remove the lines from styles, inside of the…