gajan_idsc 0 Report post Posted March 17, 2011 Hi, I purchased platform pro recently and setting up a webpage. I would appreciate if some gives me solutions / directions on solving the issues with customizing the page widget. 1. How to remove the title. If I leave the [title] field blank the name [pages] appear as title. working wordpress site 2. Which file does the design of the [page widget]. I want my menu to look like Static HTML design. & How to detect current page and highlight it ? Thanks Gajan Share this post Link to post Share on other sites
gajan_idsc 0 Report post Posted March 17, 2011 I found the solution to my first question. Just posting for other's reference. default_widgets.php //$title = apply_filters('widget_title', empty( $instance['title'] ) ? __( 'Pages' ) : $instance['title'], $instance, $this->id_base); //Ref:$title = apply_filters('widget_title', empty( $instance['title'] ) ? __( 'Pages' ) : $instance['title'], $instance, $this->id_base); $title = apply_filters('widget_title', empty( $instance['title'] ) ? __( '' ) : $instance['title'], $instance, $this->id_base); Share this post Link to post Share on other sites
Kate 3 Report post Posted March 17, 2011 Hi Gajan, For the menu, couldn't you just use a "Custom Menu" and add it as a widget? Share this post Link to post Share on other sites
gajan_idsc 0 Report post Posted March 17, 2011 Hi Kate, Yes, that could have been the simplest solution. Thanks. Regarding my question 2, I solved it by adding .page_item a{ color:#000000 } .page_item a:hover{ color:#225E9B; text-decoration:none; } .current_page_item a{color:#225E9B} The problem is I can't get rid of the underlines when I do a hover. development site for your reference. Thanks, Gajan Thanks, Gajan Share this post Link to post Share on other sites
Guest Guest Report post Posted March 17, 2011 You're going to also want to add text-decoration:none to .widget ul li a:hover Share this post Link to post Share on other sites
gajan_idsc 0 Report post Posted March 18, 2011 Thanks Tyler ! It works ! Share this post Link to post Share on other sites