Jump to content
Sign in to follow this  
gajan_idsc

Customizing page widget

Recommended Posts

gajan_idsc

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

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

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

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

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

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

Sign in to follow this  

×