Close

Checkbox styling

gadd
9 years ago
#6053 Quote
Avatar
  • 5
How is the checkbox styled in version 3.3. Changing the image checkbox.png has no affect. Image of the issue is here: http://organicwine.com.au/docs/nopTemplatesCheckBoxIssue.png
Deni
9 years ago
#6056 Quote
Avatar
  • Moderator
  • 389
gadd wrote:
How is the checkbox styled in version 3.3. Changing the image checkbox.png has no affect. Image of the issue is here: http://organicwine.com.au/docs/nopTemplatesCheckBoxIssue.png


Hello,

The style you have commented is not the one that affects the checkbox.
You have to find this rule in this file: ~\Plugins\SevenSpikes.Nop.Plugins.AjaxFilters\Themes\Alfresco\Content\AjaxFilters.css

.filtersGroupPanel li a:before {
        content: " ";
        display: inline-block;
        width: 8px;
        height: 8px;
        border: 1px solid #333;
        position: absolute;
        top: 50%;
        left: 10px;
        margin: -6px 0 0;
    }


and modify it to this:

.filtersGroupPanel li a:before {
        content: " ";
        display: inline-block;
        width: 8px;
        height: 8px;
        border: 1px solid #333;
        position: absolute;
        top: 50%;
        left: 10px;
        margin: -6px 0 0;
        border-radius: 50%;
    }


Just added border-radius.

That is all you need.

Best Regards !
Best Regards,
Mladen Staykov
Nop-Templates.com