cancel
Showing results for 
Search instead for 
Did you mean: 

Change Font Style in Theme designer

Former Member
0 Kudos

Using UI theme designer, is there a way to change the font style?... we are only able to change the color, bg color, etc, but not the font style...

we also looked into Expert & CSS features in the theme designer...

if we cannot use theme designer, then can we change using the extended project?.... please share some snippets if possible.

Accepted Solutions (0)

Answers (2)

Answers (2)

0 Kudos

Hi,

     This may help you...

List of Supported CSS Classes

Former Member
0 Kudos

I've been looking for this as well.

There's an answer on stackoverflow which mentions such a feature - apparently, a property called "font familiy" should be available in expert mode, but I have been unable to find it.

Any help on this is greatly appreciated!

Best regards,
David

Former Member
0 Kudos

I have not been able to find it yet:-)

I moved out of this proj. since then...

Former Member
0 Kudos

I think its possible,

Append each word (for which font to be changed) in a div. Have a class name.

<div class="sapThemeFont sampling" data-sap-ui-preserve="__html0-__xmlview3--idProductsTable-0" id="__html0-__xmlview3--idProductsTable-0"> Sample </div>

.sapThemeFont {

    font-family: Arial,Helvetica,sans-serif;

    font-size: 16px;

    font-style: italic;

}

run your code and check