I am using ckfinder for ckeditor in asp.net mvc.
I want to change font of context menu in ckfinder, but I can't inspect that in chrome to find css code.
How can I do this?
Assuming that you are using CKFinder 2.x this requires some browsing through the DOM.
div#ckfinder
that is just inside body of that iframediv#ckfinder
like this: <div class="cke_skin_kama skin_kama cke_compatibility">..</div>
That div is holding contextmenu. To show it just disable CSS style display: none
.
You'll need to update skins/kama/uipanel.css
to change .cke_skin_kama .cke_menuitem a
definition.