Hi epigrapisa,
If you want to remove the page title in page then go to Appearance->Theme Options->Design Options-> Custom CSS and paste these css
.page .entry-title, .page .entry-title a{
position: absolute !important;
clip: rect(1px 1px 1px 1px); /* IE7 */
clip: rect(1px, 1px, 1px, 1px);}
Now if you want to show tag cloud in page, create child theme of clean retina and create a template in the child theme. In your page template use this code <?php the_widget( ‘cleanretina_custom_tag_widget’); ?>.
Regards,
Rabin( Team Horse )
Hi, I need help again 🙂 I want to cancel the visualization of author, date and category from the articles. I know that I should modify page.php but I can’t find those parts that let me erase author, date and cathegory. Thanks for the help, kind regards
Hi epigrapisa,
You can do the same as done for page title. Just replace the above code with this in your custom css
.page .entry-title, .page .entry-title a, .entry-meta{
position: absolute !important;
clip: rect(1px 1px 1px 1px); /* IE7 */
clip: rect(1px, 1px, 1px, 1px);}
Regards,
Team Horse
Hi Rabin Shrestha,
What I want to do is remove the page title from Home Page and preserve the modification even after the theme update. I know I sud use child theme but dont know how to configure the child theme for the purpose.
Please help me with this..
Thank you
Actually from the home Page only..I can do it without a child theme but not in a child theme..