badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

Reply To: Bullet points not seen in the pages

#8942

I think you are not getting how the child theme works. You should try to research first on how child theme works then only you would be able to implement it correctly. But I will try to make you clear in short.

Actually when you create child theme style you write @import url(….) to import all the css of the parent theme so that the child theme looks exactly like the parent. Now if want to modify any part then you have to write the css below the @import url(….). This css written below will override the parent css. Remember there is no such thing of deleting parent css. You can only override it with your new css but cannot delete it. Actually you don’t need to delete the css since the overriding will do fine. Let’s see this in example.

Suppose you parent theme has this
h1 {
padding: 4px;
border: 1px solid #000000;

}

and now you don’t want this or you want to delete it. Now what you can do this in your child theme to counter it
h1 {
padding: 0px;
border: 0 none;
}

This will counter the css in parent. I hope you now understand how you should go ahead.