Custom css code in wordpress [closed]

In general, you can change any CSS by adding your own ‘customized CSS’ to the theme; many themes have an option in the theme Customization to add CSS. If not, there are plugins available that will add that capability. You can also create a Child Theme, and then add your custom css to that child … Read more

Hiding fields a form in via CSS [closed]

nth-child depends on the element itself, not the children of an element. So the following CSS means: “Hide an element with the class input-group if it is the second child of an element with the class fc-calc-result-wraps”. .fc-calc-result-wraps > .input-group:nth-child(2) { display: none; }

Put CSS on TOP, how?

Would be interesting to see if you get the same YSlow message when checking your site without any plugins. Its a little difficult to be sure because of the minification of HTML/CSS on your site, but it seems some of the plugins are not inserting stylesheets in to the <head> part of your document, and … Read more

WordPress CSS not working properly

This isn’t about the database at all. First of all be sure that it isn’t any cache problem or something like that. Try with incognito mode or another browser and check if the issue persists. If you still don’t see any CSS applied, well most probably there isn’t any CSS file loaded in the page. … Read more

What CSS selectors to know for WordPress? [closed]

This is a good question, overall, for users looking to edit the standard twentythirteen theme, but it really isn’t going to help you in the long run. I suggest starting at the Codex to learn more about theme development, then check out the List of WP Generated Classes to see what WP is creating for … Read more

Hide certain div/ class only at front page

If the WordPress theme is doing it’s job correctly, then it’s using the body_class() function to output the classes on the <body> tag. If that’s the case, then on the home page, it will add the .home class, and we can target that class as follows: .home #page-element { display: none; } If the theme … Read more