Can’t upload the theme

It seems that you had upload that theme earlier. Go to Media, then find the item which has the same name of the theme you want to upload. Click it, and delete it. After that upload your theme again.

theme 2016 – customize css – nothing happens

Try viewing the page’s source code (ctrl + u, usually) to see if the code is actually being added to the <head> element of the web page. If it is, the problem is not with WordPress, but that you are probably targeting the wrong elements. If so, right-click on the item you are trying to … Read more

totally confused about editing wp theme….new guy to wp

Here there are 3 scenarios: 1- You want to customize your current theme. You can do this by heading to Appearance > Customize in the left sidebar. You can customize your theme there, based on the theme’s design. 2- You want to change the theme’s structure. If you are familiar with HTML, CSS and PHP, … Read more

How to manage wordpress knowledge base/wiki/posts collections

WordPress already provides a built-in mechanism for navigating collections of posts called “Archives”. Taxonomies such as “Category” naturally create a collection of posts – and thus WordPress automatically facilitates taxonomy archives. Meanwhile, pages are intended to display singular, definitive content that is usually timeless. It sounds to me as though your “Topics” should be top-level … Read more

Add custom css to theme

You need to make sure that your css goes between style tags. Try changing this line: .btn { background-color:<?php echo esc_attr($btn_color);?>; } <?php to <style>.btn { background-color:<?php echo esc_attr($btn_color);?>;</style> } <?php

I want to increas my site image [closed]

In the ‘additional CSS’ section of your theme customization area, try this CSS .rsrc-header-img {width:500px;} …changing the width value as needed. If your theme doesn’t have an ‘additional CSS’ setting, there are plugins that will add that to your theme’s customization page. Or, you could create a Child Theme, then put the above CSS in … Read more