Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • webmestrejoomla Friend
    #177692

    Hello,

    i would like to customize the bottom part of my template.

    – Modify the copyright Joomla: remove the following text from the footer: “Tous droits réservés Designed by JoomlArt.com. Joomla! est un Logiciel Libre diffusé sous licence GNU General Public”
    – Modify the color of the bottom : change from black to dark blue
    – Modify the height : remove all the unnecessary margins and other spaces (see image below) in order to reduce the total height of the bottom

    How Do I do those 3 things?
    thanks in advance.


    1. bottom-footer
    TomC Moderator
    #455458

    <em>@webmestrejoomla 322819 wrote:</em><blockquote>Hello,

    i would like to customize the bottom part of my template.

    – Modify the copyright Joomla: remove the following text from the footer: “Tous droits réservés Designed by JoomlArt.com. Joomla! est un Logiciel Libre diffusé sous licence GNU General Public”</blockquote>
    You can remove JA copyright information with condition that you purchase Copyright Removal license – which is separate from your JATC Standard membership fee. With this package you can remove our footer “Designed by JoomlArt.com” and changed it to “Designed/Powered by YourCompany” as well as other reference to JoomlArt.com.The Copyright Removal fee structure is as follows:

    • Copyright Removal for 1 domain: USD $40
    • Copyright Removal for 2 domain: USD $70
    • Copyright Removal for 3 domain: USD $90

    In order to buy our Copyright removal fees, you must purchase our JATC standard membership first then please log into sign up page via http://www.joomlart.com/member/signup.php >> Copyright removal column >> select the suitable one to buy.

    <em>@webmestrejoomla 322819 wrote:</em><blockquote>- Modify the color of the bottom : change from black to dark blue</blockquote>
    Please provide the url of the site you’re working on, as well as set “Customize CSS” to “No” within your Template Manager–General Settings.

    webmestrejoomla Friend
    #455500

    <em>@TomC 322838 wrote:</em><blockquote>

    In order to buy our Copyright removal fees, you must purchase our JATC standard membership first then please log into sign up page via http://www.joomlart.com/member/signup.php >> Copyright removal column >> select the suitable one to buy.

    </blockquote>

    I do not understand. I bought the developer membership (the more expensive one!) precisely because I wanted to be able to modify the copyright (see image below). i can remove the footer, but I would like just to modify it (replace “designed by joomlart” by “designed by ‘my company'” and I do not understand how to do that.


    1. joomlartMembership
    webmestrejoomla Friend
    #455518

    <blockquote>
    Please provide the url of the site you’re working on, as well as set “Customize CSS” to “No” within your Template Manager–General Settings.
    </blockquote>
    URL sent as PM

    TomC Moderator
    #455542

    <em>@webmestrejoomla 322898 wrote:</em><blockquote>I do not understand. I bought the developer membership (the more expensive one!) precisely because I wanted to be able to modify the copyright (see image below). i can remove the footer, but I would like just to modify it (replace “designed by joomlart” by “designed by ‘my company'” and I do not understand how to do that.
    </blockquote>
    My apologies . . . MY MISTAKE in not recognizing your Developer Level Membership

    You should have received a pdf attachment with your Developer Membership confirmation email that described how to modify the copyright information for your templates. Otherwise, what you can do is. . . .

    • Log into your sign up page via http://www.joomlart.com/member/signup.php
    • Go to Your payment history group at the bottom
    • Look at the PDF Copyright Removal column and get the copyright removal instructions.

    Again, my apologies for my mistake/misunderstanding . . . . Hope the above helps.

    webmestrejoomla Friend
    #455606

    <em>@TomC 322950 wrote:</em><blockquote>Otherwise, what you can do is. . . .

    • Log into your sign up page via http://www.joomlart.com/member/signup.php
    • Go to Your payment history group at the bottom
    • Look at the PDF Copyright Removal column and get the copyright removal instructions.

    Again, my apologies for my mistake/misunderstanding . . . . Hope the above helps.</blockquote>
    No worries.
    I have founded the pdf and I’ve followed the instructions. It works! 🙂
    Thank you!

    Now I would like to customize the bottom/footer as said:
    <blockquote>
    Modify the color of the bottom : change from black to dark blue
    – Modify the height : remove all the unnecessary margins and other spaces (see image below) in order to reduce the total height of the bottom
    </blockquote>
    How can I do that?

    TomC Moderator
    #455660

    <em>@webmestrejoomla 323038 wrote:</em><blockquote>
    Now I would like to customize the bottom/footer as said:

    How can I do that?</blockquote>

    For the bottom background color . . . . .

    Within file path –> /templates/ja_puresite/css/template.css

    at line 814, you will see the following:

    #ja-botsl1 {
    background: url("../images/bg-body.gif") repeat scroll left top transparent;
    border-top: 5px solid #E5E6E7
    }

    The background image identified above is what is controlling that background color for the top 2/3 of the bottom section. To change, you can either replace the background image within file path /templates/ja_puresite/images//bg-body.gif, or you can simply identify a background color hex code for the background (solid) color.

    For the bottom footer color . . . . .

    Within file path –> /templates/ja_puresite/css/template.css

    at line 675, you will see the following:

    #ja-footer {
    background: url("../images/bg-body.gif") repeat scroll left top transparent;
    padding-bottom: 40px;
    }

    Same deal as above … To change, you can either replace the background image within file path /templates/ja_puresite/images//bg-body.gif, or you can simply identify a background color hex code for the background (solid) color.

    For the bottom margins (top/bottom) . . . .

    Within file path –> /templates/ja_puresite/css/template.css

    at line 827, you will see the following:

    [FONT=arial]#ja-botsl1 .main div.ja-moduletable, [/FONT]
    [FONT=arial]#ja-botsl1 .main div.moduletable {[/FONT]
    [FONT=arial] width: auto;[/FONT]
    [FONT=arial] padding-top: 40px;[/FONT]
    [FONT=arial] padding-bottom: 20px;[/FONT]
    }



    Try modifying as follows (as an example/suggestion) . . . .


    #ja-botsl1 .main div.ja-moduletable, #ja-botsl1 .main div.moduletable {
    padding-bottom: 0px;
    padding-top: 10px;
    width: auto;
    }

    You can, of course, fiddle around with the padding pixel values until you arrive at the result you’re most happy with. (a little trial-and-error can go a long way) 😎

    Similarly, for the bottom margin/spacing for the footer section . . . .

    Within file path –> /templates/ja_puresite/css/template.css

    at line 675 . . .

    #ja-footer {
    background: url("../images/bg-body.gif") repeat scroll left top transparent;
    padding-bottom: 40px;
    }

    You can fiddle around with the pixel value for the bottom space/margin until you arrive at the result you’re most happy with.

    Hope That Helps

    webmestrejoomla Friend
    #455760

    Thank you, it works! 🙂

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

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

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