Support

Search results for ""

Sorry, no results found. Perhaps you would like to search the documentation?
All Topics
ming xuan

Inline Edit question

Thㄍ pencil icon too small and unapparent

Could i use different color with pencil icon and changed bigger?

7 years, 11 months ago
Stefan van den Dungen Gronovius
Developer

There is no setting to change the color of the pencil, but you could change the color by overriding it in your CSS.
Or you could just put this snippet to you function.php and change the color to whatever you like.

function cac_better_visible_inline_edit_icon() { ?>
	<style type="text/css">

		#the-list.cacie-enabled td .cacie-edit,
		#the-comment-list.cacie-enabled td .cacie-edit {
			color: #000; // black color
		}
		
	</style>
	<?php
};
add_action( 'cac/admin_head', 'cac_better_visible_inline_edit_icon' );
7 years, 11 months ago

You must be logged in to reply to this topic.