How to avoid repeating similar properties for all tds of a table in a wordpress post

…there’s no way to include the style in WordPress posts, at all? You need to add the style tag to the list of allowed post tags, and also ensure TinyMCE recognises it in the editor: function wpse_180472_wp_kses_allowed_html( $tags, $context ) { if ( $context === ‘post’ ) $tags[‘style’] = array(); return $tags; } add_filter( ‘wp_kses_allowed_html’, … Read more

override a css style [closed]

You can not delete or ignore default styling in a child theme. You must override the declaration. .content-ver-sep { background: transparent !important; border-bottom: none !important; clear: both; height: 1px; } this should do the trick –

Where are the contents of WP_Head

Looks like the source of my problem is a function called admin_bar_bumpin wp-includes>admin-bar.php. It’s for the admin bar and when I log out it goes away so it wasn’t effecting the style of the site for logged out users. I was able to filter it out in my functions.php file. That’s actually no better than … Read more

Theme twentythirteen widget area clearfix

There are many approaches to this. This is because the position: absolute on the sidebar-container is making it overlap over the footer. Try this CSS to override. This is a static solution: body.single .hentry // Selects the single posts { min-height: 2000px; // Set this according to the height of the sidebar } This one … Read more

How do I get access to the CSS Editor

Without being rude, it will probably cost more to fix what you break instead of asking them in the first place! – however, you can’t learn until you break!. If I were you and you are interested in trying to play around with CSS/HTML – then you could always install WordPress locally on your Mac/PC, … Read more

Different background for different page

Yes, that’s possible! For the default homepage, you can use this: body.home { background-color: #ff0000; } For a specific blog post, you can use this where 5 is its post ID: body.postid-5 { background-color: #00ff00; } And this is for a specific page and it’s the same where 5 is the page ID: body.page-id-5 { … Read more

Reduce font size [closed]

Not a WordPress question, but add the following in your stylesheet: .featured-text h2, .featured-text h2 a { font-size: 24px !important; /* set font size */ } In the future, simply Inspect Element to find which class or tag to style.

How to not load stylesheet and how to load a second stylesheet on a page

There are a few ways to do this depending on your preferred approach and the current theme you are working in. The “WordPress Way” would be to enqueue the new style sheet in functions.php using wp_enqueue_style() https://codex.wordpress.org/Function_Reference/wp_enqueue_style You can remove the reference to the original stylesheet by deleting the reference to it in your existing … Read more

Cannot change hover color for links [closed]

You can avoid all this redundancy if you analyze carefully and see where the error is originating. Chrome developer tools or Firefox is great to help you debugging. You are actually trying to style the link, but the link has a span inside of it, each with its own class. A quick and dirty solution … Read more