This question is not answered. Helpful answers available: 2. Correct answers available: 1.


Permlink Replies: 3 - Pages: 1 - Last Post: 7 Sep 25, 14:48 Last Post By: Laza
nractive

Posts: 8
Registered: 2-Sep-2024
mysterious dash
Posted: 6 Sep 25, 23:58
 
  Click to reply to this thread Reply
Can anyone explain why when viewing an image in the lightbox and then returning to a collection page, a dash/hyphen appears as the caption? (See the attached image.)
Laza

Posts: 1,631
Registered: 6-Sep-2005
Re: mysterious dash
Posted: 7 Sep 25, 07:37   in response to: nractive in response to: nractive
 
  Click to reply to this thread Reply
Perhaps a date range with wrong dates? Sorry, I can not tell it from a screenshot.
RobM

Posts: 3,953
Registered: 4-Aug-2006
Re: mysterious dash
Posted: 7 Sep 25, 13:04   in response to: Laza in response to: Laza
 
  Click to reply to this thread Reply
The album is at https://www.timkilby.com/photography/blue-ridge-collection/index.html
Lifeboat file one level up. It happens on every image.
Laza

Posts: 1,631
Registered: 6-Sep-2005
Re: mysterious dash
Posted: 7 Sep 25, 14:48   in response to: nractive in response to: nractive
 
  Click to reply to this thread Reply
It's the custom CSS you've added. It should never refer to a class ".active", as the skin is using that. I don't know what this .crcollapsible does, but you can fix it by using better CSS hooks:
.crcollapsible {
    background-color: #777573;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
	margin-bottom: 0.5em;
}
.crcollapsible.active, .crcollapsible:hover {
    background-color: #555351;
}
.crcollapsible:after {
    content: '\002B';
    color: white;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}
.crcollapsible.active:after {
    content: "\2212";
}
.crcontent {
    padding: 0 18px;
    margin-bottom: 0.5em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: #e8e7e6;
}
Legend
Forum admins
Helpful Answer
Correct Answer

Point your RSS reader here for a feed of the latest messages in all forums