Move ojs brand image to the left

Would it be possible to move the ojs brand image from the right to the left? How?
I’m using ojs 3.1.1.4, with the Health Sciences Theme.

Thanks!

Hi!

It is possible to modify the template for the Health Science theme in order to move the OJS logo to the left in the following file: templates/frontend/components/footer.tpl by moving the HTML content starting at line 25 and ending at line 30 before line 19 and removing the class text-right.

It would look like this:

<div class="container site-footer-content">
  <div class="row">
    <div class="col-md col-md-2 align-self-center">
      <a href="{url page="about" op="aboutThisPublishingSystem"}">
        <img class="footer-brand-image" alt="{translate key="about.aboutThisPublishingSystem"}"
             src="{$baseUrl}/{$brandImage}">
      </a>
    </div>
  
    {if $pageFooter}
      <div class="col-md site-footer-content align-self-center">
        {$pageFooter}
      </div>
    {/if}
  </div>
</div>
2 Likes

thank you Sophy, right on target!