Cross Reference in Table

This forum is for all Flare issues related to styles, stylesheets and XML.
Post Reply
law
Jr. Propeller Head
Posts: 8
Joined: Thu Mar 03, 2016 3:31 pm

Cross Reference in Table

Post by law »

I'm having problems with a Cross Reference in my table: The actual cross reference is lower than the surrounding text and I can't see why:
You do not have the required permissions to view the files attached to this post.
ChoccieMuffin
Senior Propellus Maximus
Posts: 2632
Joined: Wed Apr 14, 2010 8:01 am
Location: Surrey, UK

Re: Cross Reference in Table

Post by ChoccieMuffin »

How does it appear in your output? I find the WYSIWYG editor isn't always "what you see is what you get", more like "what you see is kinda, sorta, what you get but not always". So it's possible there isn't a problem at all.
Started as a newbie with Flare 6.1, now using Flare 2023.
Report bugs at http://www.madcapsoftware.com/bugs/submit.aspx.
Request features at https://www.madcapsoftware.com/feedback ... quest.aspx
law
Jr. Propeller Head
Posts: 8
Joined: Thu Mar 03, 2016 3:31 pm

Re: Cross Reference in Table

Post by law »

What I posted there is the actual PDF output.
GregStenhouse
Sr. Propeller Head
Posts: 330
Joined: Tue May 13, 2008 3:27 pm
Location: Christchurch, New Zealand

Re: Cross Reference in Table

Post by GregStenhouse »

Cross references are in your stylesheet under MadCap|xref or MadCap|xref.[name]

My guess is either you have padding or margins set in there - or you have padding or margin set on another style that is not cascading down to the xref style. Either way, tweaking the xref style should fix it:

Code: Select all

MadCap|xref
{
	padding-bottom: 5px !important;
	color: #000000;
	text-decoration: none;
	mc-format: '{i}{paratext}{/i} {pageref}';
}
Post Reply