Copy link to clipboard
Copied
We upgraded from Robohelp X7 to X8 and opened the project. We allowed the project to upgrade and in the project window everything looks great. When we try Preview Topic or generate we have two issues on many of the pages. One is the shaded text area no longer covers the topics completely. We have too many pages that would have to be fixed. The second issue the hyperlinks look fine until again we Preview Topic or generate. Many of the hyperlinks changed so they come out small and red.
Has anyone had this issue from the upgrade and does anyone know how it's fixed?
Copy link to clipboard
Copied
Hi there
Most likely both issues will be easily resolved by simply making some changes to your CSS. If possible, post what your CSS contains so that we might see it and offer suggestions.
Cheers... Rick
Helpful and Handy Links RoboHelp Wish Form/Bug Reporting Form Begin learning RoboHelp HTML 7 or 8 within the day - $24.95! |
Copy link to clipboard
Copied
Hi,
Hoping Rick won’t scorch me for interfering
The hyperlinks should be 8pt and a bit dark red. Look at all hyperlink styles (A.xxx). It adds the color definition color: #800000; and the size definition: font-size: 8pt;. Remove all this style, or replace it with the correct one.
Greet,
Willam
This e-mail is personal. For our full disclaimer, please visit www.centric.eu/disclaimer.
Copy link to clipboard
Copied
Willam! Sheesh... Turning on the flamethrower now....
No, actually I'm not nearly as strong on CSS as you are and it is most appreciated that you decided to chime in!
Feel free to chime in any time. We are happy to have your expertise here!
Cheers... Rick
Helpful and Handy Links RoboHelp Wish Form/Bug Reporting Form Begin learning RoboHelp HTML 7 or 8 within the day - $24.95! |
Copy link to clipboard
Copied
Rick,
Thank you for your quick response. Here is the contents of default.css:
/*Created with Adobe RoboHelp.*/
BODY {
font-family: Arial;
background-color: #ffffff;
}
H1 {
font-size: 18pt;
font-family: Arial, sans-serif;
color: #000000;
font-weight: bold;
}
LI.H1 {
font-size: 18pt;
font-family: Arial, sans-serif;
color: #000000;
font-weight: bold;
}
H2 {
font-weight: bold;
font-size: 12pt;
font-family: Verdana, sans-serif;
color: #000080;
text-decoration: underline;
}
LI.H2 {
font-weight: bold;
font-size: 12pt;
font-family: Verdana, sans-serif;
color: #000080;
text-decoration: underline;
}
H3 {
font-weight: bold;
margin-top: 6pt;
margin-bottom: 0pt;
font-size: 10pt;
color: #000080;
}
LI.H3 {
font-weight: bold;
font-size: 10pt;
color: #000080;
}
H4 {
font-weight: bold;
font-size: 12.0pt;
}
LI.H4 {
font-weight: bold;
font-size: 12.0pt;
}
H5 {
font-weight: bold;
font-size: 10.0pt;
}
LI.H5 {
font-weight: bold;
font-size: 10.0pt;
}
H6 {
font-weight: bold;
font-size: 8.0pt;
}
LI.H6 {
font-weight: bold;
font-size: 8.0pt;
}
P {
margin-bottom: 0pt;
margin-top: 6pt;
margin-left: 0in;
font-size: 10pt;
}
LI.P {
font-size: 10pt;
}
A.expandspot {
color: #008000;
cursor: hand;
font-style: italic;
text-decoration: none;
}
SPAN.expandtext {
font-style: italic;
font-weight: normal;
color: #ff0000;
}
A.dropspot {
cursor: hand;
color: #008000;
font-style: italic;
text-decoration: none;
}
A.glossterm {
color: #800000;
cursor: hand;
font-style: italic;
text-decoration: none;
}
SPAN.glosstext {
font-style: italic;
font-weight: normal;
color: #0000ff;
}
OL,
UL {
margin-top: 0px;
margin-bottom: 0px;
}
A:active {
color: #800000;
font-size: 8pt;text-decoration: none;
}
A:visited {
font-size: 10pt;
color: #800000;text-decoration: none;
}
A:link {
font-size: 10pt;
color: #800000;
text-decoration: none;
}