I have the following code in my Appointment Template.
This then creates the appointment like the image below.
What I need is for the hr line to move up a bit.
I have tried in the css stylesheet using margins and padding and nothing works
When i remove the <br /> it pushes the line up but it still does not work with margins or padding.
Any suggestions.
Cheers
John M
<AppointmentTemplate>
<div><h1><%# Eval(
"Subject"
) %></h1><br /></div>
<hr />
<div><h2><%# Eval(
"Attributes['Rooms']"
) %></h2></div>
<div><h3><%# Eval(
"Attributes['StaffNames']"
) %></h3></div>
<div><h4><%# Eval(
"Start"
,
"{0:t}"
) %> - <%# Eval(
"End"
,
"{0:t}"
) %></h4></div>
</AppointmentTemplate>
This then creates the appointment like the image below.
What I need is for the hr line to move up a bit.
I have tried in the css stylesheet using margins and padding and nothing works
.hr
{
margin
:
5px
0
!important
;
border-width
:
1px
0
0
0
;
height
:
1px
;
}
When i remove the <br /> it pushes the line up but it still does not work with margins or padding.
Any suggestions.
Cheers
John M