Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • rwilliams Friend
    #897564

    I am unable to link the images on my home page to the articles from the JACM. Please assist. All the images default to the home page. View my site at:

    http://www.glenroyblanchettephotography.com

    I want to link the photos to the article when you click the particular photo.

    Ninja Lead Moderator
    #897653

    Hi,

    In this case, you can give me the credentials info of your site: admin login and FTP account via your reply and set as private reply. I will help you to check this

    Regards

    rwilliams Friend
    #897888
    This reply has been marked as private.
    Ninja Lead Moderator
    #898192

    I fixed the problem directly on your site with the solution below

    Open templates/ja_hotel/html/layouts/joomla/content/image/intro.php file

    find and change

    <a href="<?php echo $link; ?>">
    <?php echo JLayoutHelper::render('joomla.content.image.image', $data); ?>
    </a>

    to

    <a href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($item->slug, $item->catid)); ?>">
    <?php echo JLayoutHelper::render('joomla.content.image.image', $data); ?>
    </a>

    Let me know if it helps

    rwilliams Friend
    #898229

    Thank you very much.

    rwilliams Friend
    #898233

    Hello again, I have other small change. I want to be able to increase the size of the logo. For some reason, it is being reduced on the home page as a .png file. Thanks.

    Ninja Lead Moderator
    #898238

    Try to use this way

    Create templates/ja_hotel/css/custom.css file and add new CSS style

    @media  (min-width: 1200px) {
        .logo-image a img {
            max-height: inherit !important;
        }
    }
    rwilliams Friend
    #898385

    Please note that there isn’t a custom.css file in that folder.

    rwilliams Friend
    #898388

    Thanks. I misuderstood. It works. One more thing, how do i reduce the side of the copyright section at the bottom of the page and change the background colour?

    Ninja Lead Moderator
    #899220

    You can add the CSS style below into templates/ja_hotel/css/custom.css file

    .t3-copyright {
        padding: 44px 0 30px !important;
    }
    
    .t3-footer {
        background: red !important;
    }
    rwilliams Friend
    #899276

    While the background colour portion works, the size of the lower portion, remain the same, even after chinging the pixels in the code, 24px

    Ninja Lead Moderator
    #899305

    I found the problem from your copy and it needs . before the CSS style

    Open templates/ja_hotel/css/custom.css file

    find and change

    t3-copyright {padding: 24px 0 15px !important;}

    to

    .t3-copyright {padding: 24px 0 15px !important;}

    rwilliams Friend
    #899376

    Thanks as always. All is well now. Really appreciate all your help.

Viewing 13 posts - 1 through 13 (of 13 total)

This topic contains 12 replies, has 2 voices, and was last updated by  rwilliams 8 years, 8 months ago.

We moved to new unified forum. Please post all new support queries in our New Forum