Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • diosneptuno Friend
    #156357

    Hello

    How I can reduce the space between the photo that is in the frontpaje that is in the top position and footer so that there is much space between the photo and the footer and is adjusted?.
    Thank you


    1. footer
    aman204 Friend
    #362643

    Can you provide a link to your site

    diosneptuno Friend
    #362645

    Hi:

    I can not send the link, I’m working on localhost,Sorry
    I created a custom module with a picture on top position.
    What is the problem?
    Andreu

    aman204 Friend
    #362648

    <em>@diosneptuno 203276 wrote:</em><blockquote>Hi:

    I can not send the link, I’m working on localhost,Sorry
    I created a custom module with a picture on top position.
    What is the problem?
    Andreu</blockquote>

    Sorry but it is tough to judge without having proper and live look

    Please let us know when the site has been made online to take closer look

    diosneptuno Friend
    #362669

    Hello

    Ok I will change my test server temporarily so that you can see it.
    See you soon.
    Andreu

    diosneptuno Friend
    #362674

    Hello:

    The site:

    http://www.designs.website-solutions.es/

    Thank you
    andreu

    Saguaros Moderator
    #362711

    <em>@diosneptuno 203312 wrote:</em><blockquote>Hello:

    The site:

    http://www.designs.website-solutions.es/

    Thank you
    andreu</blockquote>

    you open the file: templates/ja_norite/layouts/default.php and find the following code:
    [PHP]
    <!– MAIN CONTAINER –>
    [/PHP]

    replace:
    [PHP]
    <?php if( !$this->isFrontPage() ): ?>

    <!– MAIN CONTAINER –>

    [/PHP]

    and find:
    [PHP]
    <!– //MAIN CONTAINER –>
    [/PHP]
    replace:
    [PHP]
    <!– //MAIN CONTAINER –>

    <?php endif; ?>
    [/PHP]

    diosneptuno Friend
    #362822

    <em>@tienhc 203356 wrote:</em><blockquote>you open the file: templates/ja_norite/index.php and find the following code:
    [PHP]
    <!– MAIN CONTAINER –>
    [/PHP]

    replace:
    [PHP]
    <?php if( !$this->isFrontPage() ): ?>

    <!– MAIN CONTAINER –>

    [/PHP]

    and find:
    [PHP]
    <!– //MAIN CONTAINER –>
    [/PHP]
    replace:
    [PHP]
    <!– //MAIN CONTAINER –>

    <?php endif; ?>
    [/PHP]</blockquote>

    Hello

    In the index.php of my template these lines with a code does not exist.

    Thank you

    Andreu

    diosneptuno Friend
    #362823

    The index.php of my template:

    [PHP]<?php

    /*

    # ————————————————————————

    # JA Norite template for Joomla 1.5.x

    # ————————————————————————

    # Copyright (C) 2004-2010 JoomlArt.com. All Rights Reserved.

    # @license – PHP files are GNU/GPL V2. CSS / JS are Copyrighted Commercial,

    # bound by Proprietary License of JoomlArt. For details on licensing,

    # Please Read Terms of Use at http://www.joomlart.com/terms_of_use.html.

    # Author: JoomlArt.com

    # Websites: http://www.joomlart.comhttp://www.joomlancers.com

    # Redistribution, Modification or Re-licensing of this file in part of full,

    # is bound by the License applied.

    # ————————————————————————

    */

    // no direct access

    defined( ‘_JEXEC’ ) or die( ‘Restricted access’ );

    include_once (dirname(__FILE__).DS.’libs’.DS.’ja.template.helper.php’);

    if( defined(‘_DEMO_MODE_’) ) {

    $tmplTools = JATemplateHelper::getInstance($this, array(‘ui’, JA_TOOL_SCREEN, JA_TOOL_MENU, JA_TOOL_COLOR, ‘main_layout’, ‘direction’));

    } else {

    $tmplTools = JATemplateHelper::getInstance($this, array(‘ui’, JA_TOOL_SCREEN, JA_TOOL_MENU, ‘main_layout’, ‘direction’));

    }

    //Calculate the width of template

    $tmplWidth = ”;

    $tmplWrapMin = ‘100%’;

    switch ($tmplTools->getParam(JA_TOOL_SCREEN)) {

    case ‘auto’:

    $tmplWidth = ‘97%’;

    break;

    case ‘fluid’:

    $tmplWidth = intval($tmplTools->getParam(‘ja_screen-fluid-fix-ja_screen_width’));

    $tmplWidth = $tmplWidth ? $tmplWidth.’%’ : ‘90%’;

    break;

    case ‘fix’:

    $tmplWidth = intval($tmplTools->getParam(‘ja_screen-fluid-fix-ja_screen_width’));

    $tmplWrapMin = $tmplWidth ? ($tmplWidth+1).’px’ : ‘771px’;

    $tmplWidth = $tmplWidth ? $tmplWidth.’px’ : ‘770px’;

    break;

    default:

    $tmplWidth = intval($tmplTools->getParam(JA_TOOL_SCREEN));

    $tmplWrapMin = $tmplWidth ? ($tmplWidth+1).’px’ : ‘981px’;

    $tmplWidth = $tmplWidth ? $tmplWidth.’px’ : ‘980px’;

    break;

    }

    $tmplTools->setParam (‘tmplWidth’, $tmplWidth);

    $tmplTools->setParam (‘tmplWrapMin’, $tmplWrapMin);

    //Main navigation

    $ja_menutype = $tmplTools->getMenuType();

    $jamenu = null;

    if ($ja_menutype && $ja_menutype != ‘none’) {

    $japarams = new JParameter(”);

    $japarams->set( ‘menutype’, $tmplTools->getParam(‘menutype’, ‘mainmenu’) );

    $japarams->set( ‘menu_images_align’, ‘left’ );

    $japarams->set( ‘menupath’, $tmplTools->templateurl() .’/ja_menus’);

    $japarams->set(‘menu_images’, 1); //0: not show image, 1: show image which set in menu item

    $japarams->set(‘menu_background’, 1); //0: image, 1: background

    $japarams->set(‘mega-colwidth’, 170); //Megamenu only: Default column width

    $japarams->set(‘mega-style’, 3); //Megamenu only: Menu style.

    $japarams->set(‘rtl’,($tmplTools->getParam(‘direction’)==’rtl’ || $tmplTools->direction == ‘rtl’));

    $jamenu = $tmplTools->loadMenu($japarams, $ja_menutype);

    }

    //End for main navigation

    $layout = $tmplTools->getLayout ();

    if ($layout) {

    $tmplTools->display ($layout);

    }[/PHP]

    Saguaros Moderator
    #362888

    sorry, it is the : templates/ja_norite/layouts/default.php file

    diosneptuno Friend
    #362915

    Hi:

    Thank you,problem solved!

    Andreu.

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

This topic contains 11 replies, has 3 voices, and was last updated by  diosneptuno 14 years ago.

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