Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • timmiller Friend
    #160987

    Guys,

    Why is it that i have to spend 3 freaking hours looking to edit/change/remove information from the footer module.

    Why do these change from template to template?

    All I want to do is modify the copyright info, change a few things and i have to search through the threads finding many different files to modify…..very frustrating…

    Why do I have to search the forum to change individual pieces of this content…E-GB/footer.php/template.css???

    I am totally frustrated!!!!!!!!!!!!!!!!!!!!!!!!!!!!

    kairey Friend
    #379540

    <em>@timmiller 225318 wrote:</em><blockquote>Why do I have to search the forum to change individual pieces of this content…E-GB/footer.php/template.css???</blockquote>

    I feel your pain, these templates are great some of the best looking I have seen, but others I use come with massive PDF help files detailing everything you need to know.

    Hopefully once you get your template sorted its plain sailing from there….

    Sherlock Friend
    #379586

    <em>@timmiller 225318 wrote:</em><blockquote>Guys,

    Why is it that i have to spend 3 freaking hours looking to edit/change/remove information from the footer module.

    Why do these change from template to template?

    All I want to do is modify the copyright info, change a few things and i have to search through the threads finding many different files to modify…..very frustrating…

    Why do I have to search the forum to change individual pieces of this content…E-GB/footer.php/template.css???

    I am totally frustrated!!!!!!!!!!!!!!!!!!!!!!!!!!!!</blockquote>

    Dear timmiller,

    if you faced difficult things when look for the file to make changes on the copyright info just post it here and one of our staffs will always ready to provide assistance.

    Please let me know if the difficult persists.

    timmiller Friend
    #379654

    Dathq,

    Ok, Here is what I’d like to do.
    Using the image as a reference, I need to not display T3 image, Joomla and Joomlart copyrights, Then take the disclaimer/site copyright info and center it inside the entire module, as it is going to be privacy information with a great deal of text.

    I apologize for speaking out, I was very frustrated in time wasted.

    Thanks much,

    tm

    myuption Friend
    #379687

    I was dealing with this yesterday, i’m using J1.6 version, don’t know if this applies for J1.5.

    Either way, the t3-logo class inside the rasite template simply doesn’t work for me. The T3 framework is changing it and uses it’s own, which is outside the templates folder.

    Inside rasite template, check blocks > footer.php and remove this to get rid of the logo

    <?php
    $t3_logo = $this->getParam ('setting_t3logo', 't3-logo-light', 't3-logo-dark');
    if ($t3_logo != 'none') : ?>
    <div id="ja-poweredby" class="<?php echo $t3_logo ?>">
    <a href="http://t3.joomlart.com" title="Powered By T3 Framework" target="_blank">Powered By T3 Framework</a>
    </div>
    <?php endif; ?>

    Then, if you want to center the footer… that one will be tricky, tried several things and basically all I did was to add and extra class: – here, i just wanted to move the text to the left –

    .ja-copyright {
    margin: 0 0 0 -180px;
    }

    Now to edit the footer, that should be modified inside the languages folder, check the footer… now, haven’t tried, but it might be also coded and you will need to modify it inside the t3 files. If I get there, I’ll post back with more. In the meantime, maybe someone else has more ideas 😀

    timmiller Friend
    #379690

    hmm…
    This is what I’ve got between my footer comments:

    <div id="ja-footer" class="wrap">
    <div class="main clearfix">

    <div class="ja-rs4-top"><div class="ja-rs4-tl"> </div><div class="ja-rs4-tr"> </div></div>

    <div class="ja-rs4-mid"><div class="ja-rs4-ml"><div class="ja-rs4-mr clearfix">
    <div class="ja-footnav">
    <jdoc:include type="modules" name="footnav" />
    </div>

    <div class="inner">
    <div class="ja-copyright">
    <jdoc:include type="modules" name="footer" />
    </div>
    </div>
    </div></div></div>

    <div id="ja-poweredby">
    <a id="t3-logo" href="http://t3.joomlart.com" title="Powered By T3 Framework" target="_blank">Powered By T3 Framework</a>
    </div>

    <div class="ja-rs4-bot"><div class="ja-rs4-bl"> </div><div class="ja-rs4-br"> </div></div>

    </div>
    </div>

    In the second code ref, you have .ja-copyright, only what file is this, footer.php still?

    Also- where is this language file…it’s not in the main languages directory right?

    myuption Friend
    #379697

    Removing this should delete that logo

    <div id="ja-poweredby">
    <a id="t3-logo" href="http://t3.joomlart.com" title="Powered By T3 Framework" target="_blank">Powered By T3 Framework</a>
    </div>

    timmiller Friend
    #381611

    Thanks again. Everything finally worked, except the margin for the copyright. I’m not sure where to go from here. I just want to move over the copyright, Company name, and website. All three are in different locations….I was editing the template.css file.

    Appreciate any help.

    Tim

    Phill Moderator
    #381626

    <em>@timmiller 228012 wrote:</em><blockquote>Thanks again. Everything finally worked, except the margin for the copyright. I’m not sure where to go from here. I just want to move over the copyright, Company name, and website. All three are in different locations….I was editing the template.css file.

    Appreciate any help.

    Tim</blockquote>

    The T3 logo can be removed from the profiles tab in the template manager.

    Adjusting the footer text all the details for that are supplied in a PDF when you purchase copyright removal. JA do not supply those details in the docs or on the forum because the footer should not be replaced until a user purchases the right to do so. I know it is frustrating having to find all this stuff but it gets easier with time.

    myuption Friend
    #381691

    <em>@phill luckhurst 228032 wrote:</em><blockquote>The T3 logo can be removed from the profiles tab in the template manager.

    Adjusting the footer text all the details for that are supplied in a PDF when you purchase copyright removal. JA do not supply those details in the docs or on the forum because the footer should not be replaced until a user purchases the right to do so. I know it is frustrating having to find all this stuff but it gets easier with time.</blockquote>

    Guess he refers just to move the footer, not changing it.

    I changed the position adding this class into template.css

    .ja-copyright {
    margin: 0 0 0 -180px;
    }

    Now… I’d also like to center it, but align seems not to work.

    Phill Moderator
    #381693

    <em>@myuption 228114 wrote:</em><blockquote>Guess he refers just to move the footer, not changing it.

    I changed the position adding this class into template.css

    .ja-copyright {
    margin: 0 0 0 -180px;
    }

    Now… I’d also like to center it, but align seems not to work.</blockquote>

    Can you post a link to your site with css optimization set to “no”?

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

This topic contains 11 replies, has 5 voices, and was last updated by  Phill 13 years, 8 months ago.

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