how to create url bbcode

osiris

Active member
Registered
Joined
Apr 25, 2020
Messages
27
Points
13

Reputation:

hello i want create custom bbcode about insert url but i don't know what should i put please tell me
 

jim

Well-known member
Registered
Joined
Aug 20, 2021
Messages
113
Points
38

Reputation:

Hi to create a custom BBCode with a link/links follow these steps. Its really simple to do this.

1642843736434.png


Now create one by clicking add bbcode
1642843847091.png


Now add any tag

1642844113572.png


Now we need to code a bit of HTML into the HTML replacement

1642844220026.png



Add any icon or image here

1642844760412.png


Okay, now that that's done we'll need to do some CSS for the class.
you can just copy the CSS which I already did for you. :p


Add this to extra.less

CSS:
.jimmy5-bbcode:before {
    font-family: "Font Awesome 5 Brands";
    font-weight: 900;
    font-size: 24px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-bottom: 1px;
    text-shadow: 0px 0px 3px #26292d;
    border-left: 3px solid #ff5d55;
    color: #ff5d55;
    content: "\f3d9";
    border-radius: 2px;
}

.jimmy5-bbcode {
    border-radius: 3px;
    position: relative;
    padding: 8px 10px 8px 60px;
    margin: 5px 5px 5px 5px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: inset 0 0 5px rgba(24,26,29,0.45),0 1px 20px #1a1a1a;
    background: #242629;
    color: #f1f1f1;
    text-shadow: 0px 0px 2px #181a1d;
    font-size: 14px;
    display: block;
    transition: border ease-in-out .1s;
}

Okay, the BBCode has been created let's have a look at it. But before that, we need to add it to

BB code button manager​



1642844716671.png



Drag the icon

1642844780504.png


Now we can see that if we click on it. It opens a link

1642844935348.png



1642845135974.png



That's about it. Hope this helped you somehow.
 
Top