Clickable Text To Replace Radio buttons

This is an css question, so really this is not the right place for it. However, you need to use the + operator and the :checked selector like this: (This assumes your radio buttons are built like this): <input type=”radio” id=”my_awesome_radio_1″ value=”value1″ /> <label for=”my_awesome_radio_1″>Value 1</label> <input type=”radio” id=”my_awesome_radio_2″ value=”value2″ /> <label for=”my_awesome_radio_2″>Value 2</label> <input … Read more

Correct use of !important

The !important property in CSS is used to provide more weight (importance) than normal property. In CSS, the !important means that “this is important”, ignore all the subsequent rules, and apply !important rule and the !important keyword must be placed at the end of the line, immediately before the semicolon. In other words, it adds … Read more

Border around menu button [closed]

Please add this CSS in your file. Remove all the CSS that you have added for “pricelist” class. .pricelist a span{ border: 1px solid white; padding: 12px; } .pricelist a span.plus{ border:0; padding:0; } .pricelist a span .underline_dash{ display:none; } This CSS will make the nav as seen in the screenshot.

Removing Image Links from Custom Post Type

The best way to achieve your goals would be to create a child theme, and copy whichever PHP file is responsible for the page you’re wanting to edit into the child theme. You can then remove the links and additional information so that it’s actually gone from the page. That way, no one will accidentally … Read more

Custom CSS on mobile

try adding overflow:hidden to the .wrap @media only screen and (max-width: 767px) #wrap { width: 100% !important; overflow: hidden; }