How To Highlight The Active Page Link in MaxMegaMenu

Author: , January 21st, 2016

WordPress Admin -> Mega Menu -> Menu Themes Select the theme to edit, then scroll to the bottom and edit the area for the CSS Editor under Custom Styling. Add the following to affect the Menu Bar type menu:

Use the above pattern to affect other menu types…as always, YMMV.

How To Use The jQuery UI Highlight Effect

Author: , April 1st, 2011

jQuery(this).effect(“highlight”, { color: ‘#ff6633’ }, 1000); Here is the link to the documentation: http://docs.jquery.com/UI/Effects/Highlight

How To Change The Search Highlight Color In VIM

Author: , October 22nd, 2010

Add the following line to your .vimrc file: [code]hi Search ctermfg=white ctermbg=lightgreen guifg=white guibg=black[/code] Color List Color Schemes Color Scroller Use :noh to clear the last search highlight. Place the following in your ~/.vimrc to map the F3 key to a highlight toggle: [code]nnoremap <F3> :set hlsearch!<CR>[/code]