Hi There,
Please find this custom CSS:
.x-topbar .p-info {
font-size: 16.5px;
color: #fff;
letter-spacing: 0.3px;
margin: -8px auto;
margin-left: -90px;
font-family: "Roboto",sans-serif;
float: left;
background-color: #000000;
padding-bottom: 5px;
padding-top: 10px;
padding-left: 53px;
padding-right: 13px;
border-radius: 0 0 10px 10px;
line-height: 1.4;
}
And change to this:
.x-topbar .p-info {
font-size: 16.5px;
color: #fff;
letter-spacing: 0.3px;
margin: -8px auto;
margin-left: 0;
font-family: "Roboto",sans-serif;
float: left;
background-color: #000000;
padding-bottom: 5px;
padding-top: 10px;
padding-left: 25px;
padding-right: 13px;
border-radius: 0;
line-height: 1.4;
}
.x-topbar .p-info {
position: relative;
}
.x-topbar .p-info::after {
width: 0;
height: 0;
border-top: 62px solid black;
border-right: 30px solid transparent;
content: '';
position: absolute;
right: -30px;
top: 0;
}
Hope that helps and thank you for understanding.