Custom Tile creation help
I’m working on a custom tile in the Constituent Summary page. The data displays correctly, but I’m unable to adjust the size, spacing, or position of the <ul> elements within the tile. It seems like the tile is not accepting the CSS rules I apply for layout changes, including margins, padding, and alignment. I’m looking for guidance on why these UI modifications aren’t taking effect and how to properly style or control the layout inside the tile.
i would like to display standard font and header - simple tile display
Example:
Answers
-
Hello guys, I have created this example custom tile in my local dev env and deployed full dll and html code but not sure why no data display
i checked this SQL
set @REGISTRATIONS = (
select top 15
REGISTRANT.ID as REGISTRANTID,
EVENT.NAME as EVENTNAME,
REGISTRANT.ISWALKIN,
EVENT.STARTDATE,
case
when REGISTRANT.ISCANCELLED = 1 then 2
when REGISTRANT.WILLNOTATTEND = 1 then 0
else 1
end as STATUSCODE,
EVENTPRICE.NAME as REGISTRATIONOPTIONNAME
from dbo.REGISTRANT
inner join dbo.EVENT on
REGISTRANT.EVENTID = EVENT.ID
left join dbo.REGISTRANTREGISTRATIONMAP on
REGISTRANT.ID = REGISTRANTREGISTRATIONMAP.REGISTRANTID
left join dbo.REGISTRANTREGISTRATION on
REGISTRANTREGISTRATIONMAP.REGISTRANTREGISTRATIONID = REGISTRANTREGISTRATION.ID
left join dbo.EVENTPRICE on
REGISTRANTREGISTRATION.EVENTPRICEID = EVENTPRICE.ID
where
REGISTRANT.CONSTITUENTID = @ID and
EVENT.PROGRAMID is null
for xml raw('ITEM'),type,elements,root('REGISTRATIONS'),BINARY BASE64
);<REGISTRATIONS>
<ITEM>
<REGISTRANTID>DB8714FB-563C-4FDA-BA97-A37304DE5F19</REGISTRANTID>
<CONSTITUENTID>1D8D7312-E2C7-439F-9252-41F5BFE1DDDE</CONSTITUENTID>
<EVENTNAME>Fire Prevention</EVENTNAME>
<ISWALKIN>0</ISWALKIN>
<STARTDATE>2003-12-06</STARTDATE>
<STATUSCODE>1</STATUSCODE>
</ITEM>
<ITEM>
<REGISTRANTID>C2C06BAF-B1CD-4EB3-9481-2644337750C4</REGISTRANTID>
<CONSTITUENTID>1D8D7312-E2C7-439F-9252-41F5BFE1DDDE</CONSTITUENTID>
<EVENTNAME>CPR Training Session</EVENTNAME>
<ISWALKIN>0</ISWALKIN>
<STARTDATE>2004-07-10</STARTDATE>
<STATUSCODE>1</STATUSCODE>
</ITEM>
<ITEM>
<REGISTRANTID>D575D688-B8D7-412E-8BF7-02D900B9D9BB</REGISTRANTID>
<CONSTITUENTID>1D8D7312-E2C7-439F-9252-41F5BFE1DDDE</CONSTITUENTID>
<EVENTNAME>Volunteer Dinner</EVENTNAME>
<ISWALKIN>0</ISWALKIN>
<STARTDATE>2006-12-16</STARTDATE>
<STATUSCODE>1</STATUSCODE>
</ITEM>
<ITEM>
<REGISTRANTID>E3D4A1AE-7F8C-4967-9CD4-0C14E6D4AAA2</REGISTRANTID>
<CONSTITUENTID>1D8D7312-E2C7-439F-9252-41F5BFE1DDDE</CONSTITUENTID>
<EVENTNAME>Playground Grand Opening Party</EVENTNAME>
<ISWALKIN>0</ISWALKIN>
<STARTDATE>2004-09-28</STARTDATE>
<STATUSCODE>1</STATUSCODE>
</ITEM>
</REGISTRATIONS>0
Categories
- All Categories
- 6 Blackbaud Community Help
- 213 bbcon®
- 1.4K Blackbaud Altru®
- 401 Blackbaud Award Management™ and Blackbaud Stewardship Management™
- 1.1K Blackbaud CRM™ and Blackbaud Internet Solutions™
- 15 donorCentrics®
- 360 Blackbaud eTapestry®
- 2.6K Blackbaud Financial Edge NXT®
- 655 Blackbaud Grantmaking™
- 576 Blackbaud Education Management Solutions for Higher Education
- 3.2K Blackbaud Education Management Solutions for K-12 Schools
- 939 Blackbaud Luminate Online® and Blackbaud TeamRaiser®
- 84 JustGiving® from Blackbaud®
- 6.6K Blackbaud Raiser's Edge NXT®
- 3.7K SKY Developer
- 248 ResearchPoint™
- 119 Blackbaud Tuition Management™
- 165 Organizational Best Practices
- 241 Member Lounge (Just for Fun)
- 34 Blackbaud Community Challenges
- 34 PowerUp Challenges
- 3 (Open) PowerUp Challenge: Chat for Blackbaud AI
- 3 (Closed) PowerUp Challenge: Data Health
- 3 (Closed) Raiser's Edge NXT PowerUp Challenge: Product Update Briefing
- 3 (Closed) Raiser's Edge NXT PowerUp Challenge: Standard Reports+
- 3 (Closed) Raiser's Edge NXT PowerUp Challenge: Email Marketing
- 3 (Closed) Raiser's Edge NXT PowerUp Challenge: Gift Management
- 4 (Closed) Raiser's Edge NXT PowerUp Challenge: Event Management
- 3 (Closed) Raiser's Edge NXT PowerUp Challenge: Home Page
- 4 (Closed) Raiser's Edge NXT PowerUp Challenge: Standard Reports
- 4 (Closed) Raiser's Edge NXT PowerUp Challenge: Query
- 791 Community News
- 2.9K Jobs Board
- 53 Blackbaud SKY® Reporting Announcements
- 47 Blackbaud CRM Higher Ed Product Advisory Group (HE PAG)
- 19 Blackbaud CRM Product Advisory Group (BBCRM PAG)


