Adding Specific Custom CSS Per Addon. - Question | JoomShaper
Black Friday sale is live with flat 50% OFF. Sale ends soon! Grab your deal now!

Adding Specific Custom CSS Per Addon.

CW

chris wilhelms

SP Page Builder 2 years ago

I am not using any predefined template.

what I am trying to do, for example.

I have a text block, and want to make a list(ie where it is usually numbered or bullets) but i want that list to have gray checkmarks ext to each line.

But when i put in the CSS it doesn;t change the bullet/numbers to check marks(need this done per addon not for an entire page)

IE

(Checkmark) Line 1 (Checkmark) Line 2 (Checkmark) Line 3

etc

any help would be appreciated

0
2 Answers
Rashida Rahman
Rashida Rahman
Accepted Answer
Support Agent 2 years ago #128331

Hi there!

Thanks for contacting us.

You can do this by using custom CSS:

ul {
    list-style-type: none;
}
li:before
{
    content: "\2611";
    margin-right:5px;
}

Here is a screenshot for your convenience:

First you have to make them bullet point: https://prnt.sc/RHXlwbAThGGW

Then put the css in the specific text block's custom CSS field: https://prnt.sc/n9FKiLplvxuU

Best Regards

0
CW
chris wilhelms
Accepted Answer
2 years ago #129596

Thank you, its a tad different then the code i was trying to use but seems to work.

next question is, I am attempting to do a layout using DIV but it isnt working.

i need one image displayed over a block that is taller then then block but everything I do just makes the block wider.

here is an image of what I am trying to do...

https://prnt.sc/4x9-nEniFs64

I appreciate the assistance

0