Help adjusting Width of Annotation Type- Info Box Blue

kw11
Tera Contributor

Greetings,

How do you decrease the width of the Annotation Info Box Blue by chance? Its to long and I want to condense the box to make more uniform. 

kw11_0-1667569185713.png

kw11_1-1667569243378.png

 

 

6 REPLIES 6

Just play around with the CSS. You can try this

text-align:center;width:25%;margin-left: auto;margin-right: auto;

MattSN
Mega Sage
Mega Sage

You can add a style directly to the annotion-row class. Make sure to choose HTML for the annotation type and use the sample block here:

<style>
.annotation-row {
  margin:155px;
  margin-top: 00px;
  margin-bottom: 00px;
}
</style>

<ul>
	<li>Item 1 that you need to know</li>
	<li>Item 2 that you need to know</li>
</ul>

 Result

MattSN_0-1675707753574.png