c47man
Forum Replies Created
-
Anybody at all have any idea?
Bumping for visibility. Anybody know how to do this?
Forum: Plugins
In reply to: [WooCommerce] Change styling on "Show X Products" Dropdown Menu?Quick update, I manage to change most of the colors by doing this:
In the Highend Theme custom CSS section I added
.woocommerce ul.sort-count a:link, ul.sort-count a:visited { color: #eeffff; background: #007e80; border: #00b2b3; } .woocommerce ul.sort-count a:hover { background: #4ca4a6; border: #00b2b3;}And then I altered the orderby.php file from:
$html .= '<span class="current-li"><a>'.__('Show', 'woocommerce').' '.$current_count.' '.__('Items', 'woocommerce').'</a></span>';to
$html .= '<span style="background: #007e80; border-color: #00b2b3 #00b2b3" class="current-li"><a><font color="#eeffff" background="blue">'.__('Show', 'woocommerce').' '.$current_count.' '.__('Items', 'woocommerce').'</font></a></span>';The problem is that the border color for the dropdown only works for the outside border of the main box. The border color has not changed for the borders between the dropdown items, or the border for the dropdown box. Also, the border between the Show # Items and the dropdown arrow is also still white.
Does anybody know what needs to be done to get these items fixed?
Forum: Plugins
In reply to: [WooCommerce] Styling default sorting box WoocommerceDidoH did you ever figure this out? I’m stuck with the same problem.
Forum: Fixing WordPress
In reply to: Contact Form 7 changing highlighted text color?Figured it out after a bunch of trial and error. This is the code I have now:
.wpcf7 input[type="text"], .wpcf7 input[type="subject"], .wpcf7 input[type="email"], .wpcf7 textarea { background-color: #00717A; color: #ffffff; } .wpcf7 input[type="text"]::selection, .wpcf7 input[type="subject"]::selection, .wpcf7 input[type="email"]::selection, .wpcf7 textarea::selection { background-color: #FFFFFF; color: black; } .wpcf7 input[type="text"]-moz-selection, .wpcf7 input[type="subject"]-moz-selection, .wpcf7 input[type="email"]-moz-selection, .wpcf7 textarea::-moz-selection { background: #FFFFFF; color: black; }