I've been attempting to include padding-right
to a code. Despite my efforts, I haven't been successful (even tried using margin-right
).
.widget-title {
color: #454545;
font-size: 14px;
font-weight: bold;
padding-bottom: 10px;
padding-right: 20px !important; /*Initially tried without !important, but it didn't work in either case.*/
text-transform: uppercase;
}
Below is the corresponding HTML code:
<li id="categories-2" class="widget-container widget_categories"><h3 class="widget-title">Categories</h3> <ul>
I'm seeking assistance on how to achieve this.