1
Talk / Re: Donations to Ivek
« on: April 10, 2025, 07:02:37 am »
I have just read it. My sincere condolences. I wish you a lot of strength in this difficult time.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
{#ConditionAddFirst <> '' '{#ConditionAdd <> '' '{%value=XYZ custom="true"}' '</p>'}' '
<h2>XYZ</h2><p>'}
<h2>Country</h2><p id="country">{%value=country}</p>
It starts with a newline. <h2>Country</h2><p id="country"></p>
{#ConditionAddFirst <> '' '{#ConditionAdd <> '' '{%value=writers}' '</p>'}' '
<h2>Writer</h2><p id="writers">'}
This code snippet always starts without newline with {#ConditionAddFirst... and ends with ...} in the following line (also without newline at the end).if (sl[i].firstChild && sl[i].className == "pvdid" && sl[i].firstChild.data.substring(6,(6+sx.length))==sx)
As you see there is number 6 twice. Correct both. If you don't have any characters in front of {%value=num}, than it should be 0 here, of course:if (sl[i].firstChild && sl[i].className == "pvdid" && sl[i].firstChild.data.substring(0,(0+sx.length))==sx)
<h2 id="pvdid">{%value=num}</h2><h1 id="mtitle">{%value=title}</h1>{#StringReplace '{#ConditionAddFirst <> '' '{#ConditionAdd <> '' '{%value=origtitle}' '</p>'}' '
<h2>Original Title</h2><p id="otitle">'}' '
<h2>Original Title</h2><p id="otitle">{%value=title}</p>' ''}
Add the following code to \HTML Frames\frame.css and the ID will be inline and formatted the right way:#pvdid
{
float:left;
padding-right:0.5em;
margin:0px 0px 0.4em 0px;
padding:0px 0.5em 0px 0px;
font-size:1em;
}
#pvdid:after
{content:"";}