Home › Support Forums › Theme Support › Enlightenment › How to customize similar to Pinboard? › Reply To: How to customize similar to Pinboard?
Daniel Tara
Keymaster
Your wording is a little confusing? What do you mean by “is not effective”? Does it not change the font at all or is there some other flaw?
If you want both the logo and site title to appear make sure “Hide Site Title Text” is unchecked.
The 3 and 4 columns grid hide the sidebar by design. That is to avoid page clutter. If you want to remove it add the following in your child theme’s functions.php file:
add_action( 'after_setup_theme', 'enlightenment_child_remove_grid_layout_filter' ); function enlightenment_child_remove_grid_layout_filter() { remove_filter( 'enlightenment_current_layout', 'enlightenment_filter_grid_layout' ); }