- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2020 03:44 AM
Hello
I want to adjust the second widget (Known Problems ...) size as the first widget (Announcements) which is shown in the above screen shot.
Below is the piece of HTML code for known problem... widget. Please suggest me on this. Thank You!
<div class="panel panel-primary">
<div class="panel-heading">
<div class="panel-title">
<span><h4><img class="center" src="warning_icon.svg" width="30" height="30"/> Known Problems and Outages being investigated.</h4></span>
</div>
</div>
<div>
                Please click the link to read more. You can also add yourself as an impacted user.
</div>
<!-- SCROLLER -->
<div class="panel-body" style="min-height: 150px;">
<table align="left" border="0" cellspacing="2" cellpadding="0">
<tr class="animated slideInUp" ng-repeat="item in c.data.list">
<td>
<a href="{{item.link}}" target="_blank" >
<span style="padding-right:10px;"><IMG SRC="images/icons/problem.gifx"/></span>
</a>
<a href="{{item.link}}" target="_blank" class="linked" style="padding-right:10px;">{{item.number}}</a>
</td>
<td><span style="word-wrap: normal;" >{{item.short_description}}</span></td>
</tr>
</table>
</div>
</div>
Solved! Go to Solution.
- Labels:
-
Scripting and Coding
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2020 04:41 AM
Write below in the CSS section of the widget and adjust the values as per your need :
.panel-primary{
height:130px; //adjust this..
}
.panel-primary .panel-heading{
height:70px; //adjust this..
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2020 04:41 AM
Write below in the CSS section of the widget and adjust the values as per your need :
.panel-primary{
height:130px; //adjust this..
}
.panel-primary .panel-heading{
height:70px; //adjust this..
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2020 05:18 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2020 02:29 AM
As i said before, You have to adjust the figures/numbers, to get your UI looking good.
Rest the format would be the same.