Software Hosting and Development Services available at PKP Publishing Services
As the developers of Open Journal Systems, Open Conference Systems, Open Harvester Systems, and Open Monograph Press, the PKP team are experts in helping journal managers and conference organizers make the most of their online publishing projects. PKP Publishing Services offers support for:
As a customer of PKP Publishing Services, you will not only receive direct, personalized support from the PKP Development Team, but will be contributing to the ongoing development of the PKP applications. All funds raised by PKP Publishing Services go directly toward enhancing our free, open source software. For more information, please contact us.
Are you responsible for making OJS work -- installing, upgrading, migrating or troubleshooting? Do you think you've found a bug? Post in this forum.
Moderators: jmacgreg, michael, jheckman, barbarah, btbell, bdgregg, asmecher
Forum rules
What to do if you have a technical problem with OJS:1.
Search the forum. You can do this from the
Advanced Search Page or from our
Google Custom Search, which will search the entire PKP site. If you are encountering an error, we
especially recommend searching the forum for said error.
2.
Check the FAQ to see if your question or error has already been resolved.
3.
Post a question, but please, only after trying the above two solutions. If it's a workflow or usability question you should probably post to the
OJS Editorial Support and Discussion subforum; if you have a development question, try the
OJS Development subforum.
by weahason » Fri Nov 18, 2005 2:27 am
In my ojs site show Author very small .
How to change font size of Author ?
-
weahason
-
- Posts: 3
- Joined: Fri Nov 18, 2005 2:17 am
-
by asmecher » Fri Nov 18, 2005 10:47 am
Hello Weahason,
I assume you're talking about the author's name as displayed on a published article. The best way to increase the size of the Author's name is to change the templates/article/article.tpl template; there's a line in it as follows:
- Code: Select all
<div><i>{$article->getAuthorString()|escape}</i></div>
Use HTML or CSS to increase the size of the Author's name here.
Regards,
Alec Smecher
Open Journal Systems
-
asmecher
-
- Posts: 5748
- Joined: Wed Aug 10, 2005 12:56 pm
-
by weahason » Sun Nov 20, 2005 9:07 pm
Dear Alec Smecher
- Code: Select all
templates/article/article.tpl
i'm not found this path.
I forgot to let you known .I used ojs version 1.1.9 .
best regrad
weahason
-
weahason
-
- Posts: 3
- Joined: Fri Nov 18, 2005 2:17 am
-
by asmecher » Mon Nov 21, 2005 10:24 am
Hello Weahason,
For OJS 1.x, you'll need to change the viewarticle.php file. The line that displays the author's names looks like:
- Code: Select all
echo $chFirstName." ".$chMiddleInitial." ".$chSurname;
You can change it to something like:
- Code: Select all
echo '<font size="+1">' . $chFirstName." ".$chMiddleInitial." ".$chSurname . '</font>';
Regards,
Alec Smecher
Open Journal Systems Team
-
asmecher
-
- Posts: 5748
- Joined: Wed Aug 10, 2005 12:56 pm
-
by weahason » Mon Nov 21, 2005 9:09 pm
Dear asmecher and all
I changed to this code.
- Code: Select all
<?php
// Get the author(s)
$authorquery = $db->query("SELECT chFirstName, chMiddleInitial, chSurname, chAffiliation, chBiography FROM tblmetaauthors WHERE fkArticleID = '$id' ORDER BY nRank") or die($query);
$authornum = $db->num_rows($authorquery);
for ($i=0; $i<$authornum; $i++) {
$row = $db->assoc_array($authorquery, $i);
extract($row);
$y = $i + 1;
echo '<font size="+1">' . $chFirstName." ".$chMiddleInitial." ".$chSurname . '</font>';
if(!empty($chAffiliation)) { echo ", <i>".$chAffiliation."</i>"; }
echo "<br />";
}
?>
reason
no change
Help me please
-
weahason
-
- Posts: 3
- Joined: Fri Nov 18, 2005 2:17 am
-
by asmecher » Mon Nov 21, 2005 10:24 pm
Hello Weahason,
What page are you trying to change the font size on? Find out which PHP script you're using (it should be visible in the URL), look for a similar line of code in it to display the author's names, and enclose it in a <font size="...">(name inserted here)</font> tag.
Regards,
Alec Smecher
Open Journal Systems Team
-
asmecher
-
- Posts: 5748
- Joined: Wed Aug 10, 2005 12:56 pm
-
Return to OJS Technical Support
Who is online
Users browsing this forum: No registered users and 1 guest