Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • zoutmedia Friend
    #154277

    Two questions I run into…

    1. How do I delete the CP (control panel) button on the top right?
    2. How do I make the hover wider then it is now in this template? Because I can get the slideshow to 950 pixels and the picture in it. But the items below that (i think it’s called the hover, with the arrows < item >). That thing doesn’t change in a way, can someone explain to me how I can get that full width?
    3. Okay a third question… how can I delete the time / date on the top?

    Thanks in advance!

    joomlageeks Friend
    #355393

    <blockquote>How do I delete the CP (control panel) button on the top right? </blockquote>

    Login to administrator and navigate to module manger and unpublish the “JA Top Panel Module” module.

    I will update you shortly on the other 2 points.

    Thanks
    James

    joomlageeks Friend
    #355395

    <blockquote>3. Okay a third question… how can I delete the time / date on the top? </blockquote>

    You can open the templates/ja_social/blocks/topbar.php and comment lines 19-25.

    I will update you on #2 shortly

    Thanks
    James

    joomlageeks Friend
    #355396

    <blockquote>How do I make the hover wider then it is now in this template? Because I can get the slideshow to 950 pixels and the picture in it. But the items below that (i think it’s called the hover, with the arrows < item >). That thing doesn’t change in a way, can someone explain to me how I can get that full width? </blockquote>

    You can go to template manager -> select JA Social
    Click on the “Profiles” tab, there you will be able to change the template width.

    For making the slideshow to be wider you need to work on the module position, the column layout is floatable and will get extended (or) wider as per the module allocation on each position. Do not assign any modules to the module position to “right”

    You can look at the module placement overview here http://www.joomlart.com/forums/topic/ja-social-module-position-guide/

    zoutmedia Friend
    #355599

    1. I still get to see CP in the right corner on the top when I do this, what else should I do?
    2. How do you mean? I don’t understand…? I know how to make the slider wider but the titles in the slider don’t move with it < title | title > you know how to make these wider or…?

    3. I’ll try that.
    4. extra question…how do i remove “you are here” sentence on the bottom? and the “read more” tekst with the articles?

    Don Lee Friend
    #355649

    <em>@zoutmedia 194104 wrote:</em><blockquote>1. I still get to see CP in the right corner on the top when I do this, what else should I do?
    2. How do you mean? I don’t understand…? I know how to make the slider wider but the titles in the slider don’t move with it < title | title > you know how to make these wider or…?

    3. I’ll try that.
    4. extra question…how do i remove “you are here” sentence on the bottom? and the “read more” tekst with the articles?</blockquote>

    Hi,
    In order to hide the CPanel, Check the screenshot below and click on hide for the items you do not wish to show.

    IF you want to delete the code altogether, then go to manage the theme, select Layouts tab, edit “default” and remove this code:

    <block name="cpanel" type="usertools/cpanel"></block>

    zoutmedia Friend
    #355782

    I still don’t have the solution to the following problem. See http://hostdump.com/go/show.php/4645_test.jpg.html for the image. I now have the slider at 910 width. I also want the articleitems in the slider at that length but how do I do this? Anyone? See the image for what I mean.
    I already set the show articles at the slideshow module at 6 instead of 4 but it isn’t working. Anyone could help me would be great.

    Don Lee Friend
    #355788

    <em>@zoutmedia 194342 wrote:</em><blockquote>I still don’t have the solution to the following problem. See http://hostdump.com/go/show.php/4645_test.jpg.html for the image. I now have the slider at 910 width. I also want the articleitems in the slider at that length but how do I do this? Anyone? See the image for what I mean.
    I already set the show articles at the slideshow module at 6 instead of 4 but it isn’t working. Anyone could help me would be great.</blockquote>

    Just open file templates/ja_social/css/mod_jaslideshow2.css
    – Find this code:


    .ja-slidewrap-style2 .ja-slide-thumbs-wrap {
    width: 662px !important;
    z-index: 150;
    overflow: visible;
    top: 0px;
    right: 0px;
    bottom: 0px;
    position: relative;
    margin-left: 27px;
    height: 80px !important;
    background: url(../images/line-slideshow.gif) no-repeat right 11px !important;
    }

    – Edit red number to 885
    – Find this code:

    .ja-slide-buttons span.ja-slide-next {
    background: url(../images/next-slideshow.png) no-repeat right bottom;
    height: 27px;
    width: 18px;
    position: absolute;
    right: -700px;
    }

    – Change red number to -873

    zoutmedia Friend
    #355797

    And you know where you can change “You are here” in the template or…? In the index.php I can’t find it because it says I have to enable plugin ja t3 framework (but that’s enabled) so how do I reach the index.php if it’s in there?

    Don Lee Friend
    #355808

    <em>@zoutmedia 194362 wrote:</em><blockquote>And you know where you can change “You are here” in the template or…? In the index.php I can’t find it because it says I have to enable plugin ja t3 framework (but that’s enabled) so how do I reach the index.php if it’s in there?</blockquote>

    – Copy file navhelper.php FROM plugins/system/jat3/base-themes/default/blocks/ TO templates/ja_social/blocks/
    – Open the new file and you can see how to change the text.

    Good luck

    zoutmedia Friend
    #355816

    Doesn’t work, still get this code in the index.php of templates/ja_social/

    <?php
    if (class_exists(‘T3Template’)) {
    $tmpl = T3Template::getInstance($this);
    $tmpl->render();
    return;
    } else {
    //Need to install or enable JAT3 Plugin
    echo JText::_(‘Missing jat3 framework plugin’);
    }

    Don Lee Friend
    #355848

    <em>@zoutmedia 194385 wrote:</em><blockquote>Doesn’t work, still get this code in the index.php of templates/ja_social/

    <?php
    if (class_exists(‘T3Template’)) {
    $tmpl = T3Template::getInstance($this);
    $tmpl->render();
    return;
    } else {
    //Need to install or enable JAT3 Plugin
    echo JText::_(‘Missing jat3 framework plugin’);
    }</blockquote>

    Hi,
    I didn’t say you to edit the text in index.php file. Plz review my previous reply and edit the text in the file I said you: templates/ja_social/blocks/navhelper.php. This file will exist after you copy it from plugins/system/jat3/base-themes/default/blocks/

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

This topic contains 12 replies, has 3 voices, and was last updated by  Don Lee 14 years, 2 months ago.

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