Change PKP footer logo appearance

Version: JS 3.1.2

Description of issue: Is there any way to resize (or remove) the OJS PKP logo that is in the footer of all the appearance themes? or do I have to modify the css?

Example: AgriScientia
footer

Hi,
Depends on the theme you use
I guess you are using a bootstrap theme
plugins / themes / bootstrap3 / templates / frontend / components / footer.tpl
open this file

Delete the lines below

  		<div class="col-md-2" role="complementary">
  			<a href="{url page="about" op="aboutThisPublishingSystem"}">
                                            <img class="img-responsive" alt="{translate key="about.aboutThisPublishingSystem"}" src="{$baseUrl}/{$brandImage}">
                                    </a>
  		</div>

If not, do the same for this file.
lib / pkp / templates / frontend / components / footer.tpl

------------------------TÜRKÇE
Merhabalar
işlemler kullandığınız temaya göre değişir
bootstrap tema kullandığınız için
plugins/themes/bootstrap3/templates/frontend/components/footer.tpl dosyasını açın

39 dan sonraki aşağıdaki satırları silin (satır numarası farklı oalbilir)

  		<div class="col-md-2" role="complementary">
  			<a href="{url page="about" op="aboutThisPublishingSystem"}">
                                            <img class="img-responsive" alt="{translate key="about.aboutThisPublishingSystem"}" src="{$baseUrl}/{$brandImage}">
                                    </a>
  		</div>

Eğer olmadı ise, aynı işlemi bu dosyada uygulayın
lib/pkp/templates/frontend/components/footer.tpl

2 Likes