Menu

Gallery2 text very small, menu and titles

Help
2009-11-18
2013-05-30
  • Paul McGrath

    Paul McGrath - 2009-11-18

    Hi,
      my Gallery2 menu items and picture text is tiny, any idea how to make it bigger?
      It is normal (readable) when I am in gallery admin mode, but shrinks when I am in album view mode.
    thanks
    Paul

     
  • rick

    rick - 2009-11-18

    Paul,

    I have seen this in the past too. Just I wonder what kind of browser are you using? If you use ie8, does Firefox do the same?
    It could have to do with the path to Gallery2 but I cant recall.

    Rick.

     
  • Paul McGrath

    Paul McGrath - 2009-11-19

    I always use Firefox, I have just tried it in IE7 and Safari 4 and the text is shrunk on them too.

    It might be the path as I had to apply the path fix where you change the variables in pgv.php

    'embedUri' => "/ged/module.php?mod=gallery2",
    'g2Uri' => "/ged/modules/gallery2/",

    um…..

     
  • Paul McGrath

    Paul McGrath - 2009-11-19

    Googled t'internet and found a solution.  Find out which theme you are using in Gallery2.  I was using Matrix.
    Edit the theme.css file in the \modules\gallery2\themes\matrix folder.
    Find the line that is

        font-size: 62.5%

    and change it to

        font-size: 80%

    Refresh!

    Out of interest if you want to remove the Gallery2 logo above the menu you can edit the theme.tpl file in \modules\gallery2\themes\matrix\templates
    Find this section:

        <div id="gsHeader">
          <img src="{g->url href="images/galleryLogo_sm.gif"}" width="107" height="48" alt=""/>
        </div>
        {g->theme include="progressbar.tpl"}
              {else}
              <div id="gsHeader">
        <a href="{g->url}"><img src="{g->url href="images/galleryLogo_sm.gif"}"
        width="107" height="48" alt=""/></a>
              </div>

    and change the image size to 1 x 1, or 0 x 0

    <div id="gsHeader">
      <img src="{g->url href="images/galleryLogo_sm.gif"}" width="1" height="1" alt=""/>
    </div>
    {g->theme include="progressbar.tpl"}
          {else}
          <div id="gsHeader">
    <a href="{g->url}"><img src="{g->url href="images/galleryLogo_sm.gif"}"
    width="1" height="1" alt=""/></a>
          </div>

     

Log in to post a comment.