Hi Anna-Marie,
Thank you for getting in touch with us.
Please go to Appearance → Customize → Additional CSS and add the following css:
.sidebar-no-borders .widget_mailchimpsf_widget span {
display: inline-block;
max-width: 100%;
position: relative;
padding: 0 26px;
}
.sidebar-no-borders .widget-title span:before, .sidebar-no-borders .widget-title span:after {
content: "";
margin-top: -2px;
top: 50%;
left: 0;
position: absolute;
width: 20px;
height: 4px;
border-top: 1px solid #c4c4c4;
border-bottom: 1px solid #c4c4c4;
}
.sidebar-no-borders .widget_mailchimpsf_widget span:after {
left: auto;
right: 0;
}
Hope that helps. Thank you for your time in this.
Best regards
Hi Jarektheme,
Thank you for this! I have added the content and it seems to only appear at the beginning of the widget title and not at the end of the title. Also the dashes seem quite far away from the text in comparison to the other widget titles. Does that make sense? So sorry for bothering you, I wish I was able to code and be able to do it my self!
Thanks in advance
Hi again,
Sorry, it was my mistake. Please replace above code with this:
.sidebar-no-borders .widget-title span {
display: inline-block;
max-width: 100%;
position: relative;
padding: 0 26px;
}
.sidebar-no-borders .widget-title span:before, .sidebar-no-borders .widget-title span:after {
content: "";
margin-top: -2px;
top: 50%;
left: 0;
position: absolute;
width: 20px;
height: 4px;
border-top: 1px solid #c4c4c4;
border-bottom: 1px solid #c4c4c4;
}
.sidebar-no-borders .widget-title span:after {
left: auto;
right: 0;
}
Let me know if it works.
Best