Auvray Sébastien
asked 9 years ago

Hello every one,

First sorry for my english. I try to explains my problem.
Ok, when i try to integret a retunr line in page builder/ widget DW Brickstore: Blurd, this is not execut.

So i try to insert a "
" tag in content in the same widget this is read like a text. Not execute.

For you try understand i give you an exemple :

ex: Hello,
welcome to my home page.
you see this : hello,
welcome to my home page.
i want this : hello,
welcome to my home page.

Sorry again for my english and thanks a lot for your help.

Have a nice day.

1 Answers
DominicStaff
answered 9 years ago

Hi,
In this case, you should to add the Hello, text to the Title field and add the welcome to my home page. to the content section. See the screenshot: http://prntscr.com/8o9jeo
If you want to change the color or style, you can add the following code to the style.css file:

@media (min-width: 768px){
.padding-left-sm-3 {
    padding-left: 0px;
}
}

.block-s1 .block-title a {
float: left;
}
@media (min-width: 1400px){
.block-s1 .block-content {
    margin-top: 25px;
    font-size: 16px;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
}
}

In case that you want make style for each page, you can edit DW Brickstore: Blurb widget then add the following class to Widget class in the right hand side: custom-title-widget

Finally add the custom-title-widge class at the top of the codes line that I have provided in the first step.
Example:

@media (min-width: 768px){
.custom-title-widget .padding-left-sm-3 {
    padding-left: 0px;
}
}

.custom-title-widget .block-s1 .block-title a {
float: left;
}
@media (min-width: 1400px){
.custom-title-widget .block-s1 .block-content {
    margin-top: 25px;
    font-size: 16px;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
}
}

Please send me a screenshot & your site for further checking, if you still face there issue. Hope this helps !

Powered by DW Question & Answer Pro