test
Viewing 15 posts - 1 through 15 (of 16 total)
  • Author
    Posts
  • navegalo Friend
    #180165

    Hello,

    I want to put translated menu items in Top Mega menu at right hand side.

    I was able to translate Main Menu without any issues.

    But I am not able publish English version of menu in right side of menu .I have created topmega for Spanish.and topmega_en for English.

    topmega_en is not showing up in English.

    Site en Url :http://navegalo.co/index.php?lang=en

    Site es Url: http://navegalo.co/index.php?lang=es

    Any ideas ?

    Regards,
    Abhijit

    Ninja Lead Moderator
    #465289

    Your site is working now with both language. Kindly check again and if you have further issue please don’t hesitate contact to us.

    navegalo Friend
    #465359

    <em>@Ninja Lead 335836 wrote:</em><blockquote>Your site is working now with both language. Kindly check again and if you have further issue please don’t hesitate contact to us.</blockquote>

    Site was working in both languages.

    Issue is the icons menu which is located in top mega.

    I want to convert few of them in TEXT based menu.

    I cant translate that menu.Only one shows up which is named as “topmega”(menuname) in Mega Menu .

    Template doesnt show topmega-en which is translated menu in english.

    Regards,
    Abhijit

    Ninja Lead Moderator
    #465444

    Firstly: You need to work at local and test carefully before applying for live site

    You change it from image to text by css file

    Open templates/ja_teline_iv/css/template.css

    from

    #ja-topmega li.nav-blog a.nav-blog,
    #ja-topmega li.nav-interview a.nav-interview,
    #ja-topmega li.nav-social a.nav-social,
    #ja-topmega li.nav-feeds a.nav-feeds {
    padding: 4px 0 3px;
    margin: 3px 5px;
    text-indent: -1000em;
    width: 28px;
    }

    change to

    #ja-topmega li.nav-blog a.nav-blog,
    #ja-topmega li.nav-interview a.nav-interview,
    #ja-topmega li.nav-social a.nav-social,
    #ja-topmega li.nav-feeds a.nav-feeds {
    padding: 4px 0 3px;
    margin: 3px 5px;
    color: #333
    border: solid 1px blue;
    text-transform: none;
    }

    and remove all

    /* Blog Button */
    #ja-topmega li.nav-blog { background: url(../images/stripe-bg-2.png); }

    #ja-topmega li.nav-blog a.nav-blog {
    background: url(../images/icons/nav-blog.png) no-repeat center #000 !important;
    }

    #ja-topmega li:hover a.nav-blog,
    #ja-topmega li.over a.nav-blog,
    #ja-topmega li.active a.nav-blog {
    background: url(../images/icons/nav-blog.png) no-repeat center #3b7513 !important;
    }

    #ja-topmega li.nav-blog .ja-moduletable ul li {
    padding-left: 10px;
    }

    #ja-topmega li.nav-blog .childcontent-inner {
    background-image: none !important;
    }

    #ja-topmega li.nav-blog .ja-moduletable .k2LatestCommentsBlock ul li {
    background: none;
    padding-left: 0;
    padding-right: 0;
    }

    /* Interview Button */
    #ja-topmega li.nav-interview { background: url(../images/stripe-bg-2.png); }

    #ja-topmega li.nav-interview a.nav-interview {
    background: url(../images/icons/nav-interview.png) no-repeat center #000 !important;
    }

    #ja-topmega li:hover a.nav-interview,
    #ja-topmega li.over a.nav-interview,
    #ja-topmega li.active a.nav-interview {
    background: url(../images/icons/nav-interview.png) no-repeat center #e04b40 !important;
    }

    #ja-topmega li.nav-interview .childcontent-inner {
    background-image: none !important;
    }

    /* Social Button */
    #ja-topmega li.nav-social a.nav-social {
    background: url(../images/icon-twitter.png) no-repeat center #138bb3 !important;
    }

    #ja-topmega li:hover a.nav-social,
    #ja-topmega li.over a.nav-social,
    #ja-topmega li.active a.nav-social {
    background: url(../images/icon-twitter.png) no-repeat center #138bb3 !important;
    }

    /* RSS Feeds */
    #ja-topmega li.nav-feeds a.nav-feeds {
    background: url(../images/icon-feeds.png) no-repeat center #f68916 !important;
    }

    #ja-topmega li:hover a.nav-feeds,
    #ja-topmega li.over a.nav-feeds,
    #ja-topmega li.active a.nav-feeds {
    background: url(../images/icon-feeds.png) no-repeat center #F68916 !important;
    }

    #ja-topmega li.nav-feeds .childcontent-inner { background: #fff padding-top: 0;}

    /* Ja Twitter Modules ---*/
    div.ja-twitter { font-family: Arial, Helvetica, sans-serif; font-size: 11px; padding: 0; }

    .ja-twitter-wrapper ul li { background: none; }

    .ja-twitter-wrapper {
    background: #f0f0f0
    border: 1px solid #ccc
    margin-bottom: 10px;
    padding: 8px;
    }

    .ja-twitter-wrapper .ja-twitter-avatar { padding-right: 2px !important; }

    .ja-twitter-image { display: block; float: left; }

    .ja-twitter-source,
    .ja-twitter-text { color: #333 }

    .ja-twitter center img { float: none !important; }

    .ja-twitter h4 { margin: 10px 0; padding: 5px 0; }

    <blockquote>Go to Admin area-> Menus-> duplicate topmega and assign it with each language </blockquote>

    navegalo Friend
    #465485

    <em>@Ninja Lead 336048 wrote:</em><blockquote>Firstly: You need to work at local and test carefully before applying for live site

    You change it from image to text by css file

    Open templates/ja_teline_iv/css/template.css

    from

    #ja-topmega li.nav-blog a.nav-blog,
    #ja-topmega li.nav-interview a.nav-interview,
    #ja-topmega li.nav-social a.nav-social,
    #ja-topmega li.nav-feeds a.nav-feeds {
    padding: 4px 0 3px;
    margin: 3px 5px;
    text-indent: -1000em;
    width: 28px;
    }

    change to

    #ja-topmega li.nav-blog a.nav-blog,
    #ja-topmega li.nav-interview a.nav-interview,
    #ja-topmega li.nav-social a.nav-social,
    #ja-topmega li.nav-feeds a.nav-feeds {
    padding: 4px 0 3px;
    margin: 3px 5px;
    color: #333
    border: solid 1px blue;
    text-transform: none;
    }

    and remove all

    /* Blog Button */
    #ja-topmega li.nav-blog { background: url(../images/stripe-bg-2.png); }

    #ja-topmega li.nav-blog a.nav-blog {
    background: url(../images/icons/nav-blog.png) no-repeat center #000 !important;
    }

    #ja-topmega li:hover a.nav-blog,
    #ja-topmega li.over a.nav-blog,
    #ja-topmega li.active a.nav-blog {
    background: url(../images/icons/nav-blog.png) no-repeat center #3b7513 !important;
    }

    #ja-topmega li.nav-blog .ja-moduletable ul li {
    padding-left: 10px;
    }

    #ja-topmega li.nav-blog .childcontent-inner {
    background-image: none !important;
    }

    #ja-topmega li.nav-blog .ja-moduletable .k2LatestCommentsBlock ul li {
    background: none;
    padding-left: 0;
    padding-right: 0;
    }

    /* Interview Button */
    #ja-topmega li.nav-interview { background: url(../images/stripe-bg-2.png); }

    #ja-topmega li.nav-interview a.nav-interview {
    background: url(../images/icons/nav-interview.png) no-repeat center #000 !important;
    }

    #ja-topmega li:hover a.nav-interview,
    #ja-topmega li.over a.nav-interview,
    #ja-topmega li.active a.nav-interview {
    background: url(../images/icons/nav-interview.png) no-repeat center #e04b40 !important;
    }

    #ja-topmega li.nav-interview .childcontent-inner {
    background-image: none !important;
    }

    /* Social Button */
    #ja-topmega li.nav-social a.nav-social {
    background: url(../images/icon-twitter.png) no-repeat center #138bb3 !important;
    }

    #ja-topmega li:hover a.nav-social,
    #ja-topmega li.over a.nav-social,
    #ja-topmega li.active a.nav-social {
    background: url(../images/icon-twitter.png) no-repeat center #138bb3 !important;
    }

    /* RSS Feeds */
    #ja-topmega li.nav-feeds a.nav-feeds {
    background: url(../images/icon-feeds.png) no-repeat center #f68916 !important;
    }

    #ja-topmega li:hover a.nav-feeds,
    #ja-topmega li.over a.nav-feeds,
    #ja-topmega li.active a.nav-feeds {
    background: url(../images/icon-feeds.png) no-repeat center #F68916 !important;
    }

    #ja-topmega li.nav-feeds .childcontent-inner { background: #fff padding-top: 0;}

    /* Ja Twitter Modules ---*/
    div.ja-twitter { font-family: Arial, Helvetica, sans-serif; font-size: 11px; padding: 0; }

    .ja-twitter-wrapper ul li { background: none; }

    .ja-twitter-wrapper {
    background: #f0f0f0
    border: 1px solid #ccc
    margin-bottom: 10px;
    padding: 8px;
    }

    .ja-twitter-wrapper .ja-twitter-avatar { padding-right: 2px !important; }

    .ja-twitter-image { display: block; float: left; }

    .ja-twitter-source,
    .ja-twitter-text { color: #333 }

    .ja-twitter center img { float: none !important; }

    .ja-twitter h4 { margin: 10px 0; padding: 5px 0; }
    </blockquote>
    For First part I had created a new class and applied to each menu item using JA Extendend Parameter.So no worries with CSS.

    Second Part ..Duplicating Topmega to Tomega-en didnt work ..Tried to modify topmega.php in blocks using get language joomla functions…that failed…:((

    Then I just duplicated menu items to English menu items and Spanish menu items.That did the trick..Worked…:):)

    Thanks a lot for your help.

    Regards,
    Abhijit

    joycesarpong Friend
    #478495

    Hello,

    I saw your response to the JA Teline IV topmega menu(social icons+text at right hand side) Language issue in the forum on 25th August2012 and was wondering if you could help me,

    I would like to put the social icons (Twitter, Facbook, etc) on the right hand side of the JA Teline IV topmega menu block (i.e. to the
    right of my main menu items): http://www.ghanaoracle.com/test

    Can you help?

    I look forward to hearing back from you.

    Joyce Sarpong

    Ninja Lead Moderator
    #479248

    Regarding to social icons+text at the right hand side on your site you can make to create a module and assign it with mega position.

    If you would like to make multilaguage on this you can duplicate module: a module assign with EN language and a module assign with another language.

    joycesarpong Friend
    #482825

    <em>@Ninja Lead 354507 wrote:</em><blockquote>Regarding to social icons+text at the right hand side on your site you can make to create a module and assign it with mega position.

    If you would like to make multilaguage on this you can duplicate module: a module assign with EN language and a module assign with another language.</blockquote>

    Thank you for your response.

    joycesarpong Friend
    #482826

    Hello Abhijit,

    I am developing my website using JA Teline IV and Joomla 2.5. I have looked at your Navegalo website and seen that you have an RSS feed to produce news articles for your site. Can you tell me which RSS feed extension you used?

    Kind regards,

    Joyce

    joycesarpong Friend
    #482827

    Hello Abhijit,

    I am developing my Joomla site using Joomla 2.5 and JA Teline IV. My site is an online magazine and as such, I would like to use
    an RSS feed to automatically feed news articles to my site. I have seen that you do something similar on your Navegalo site. Can
    you please tell me what extension you use?

    Many thanks,

    Joyce

    Ninja Lead Moderator
    #482841

    Did you try JED or you can use Feed Gator .

    joycesarpong Friend
    #482910

    Hello,

    I have installed Feed Gator on my website (http://www.ghanaoracle.com/test) and I am trying to modify the settings to how I would like the feeds to be displayed. I have some issues / queries. E.g.

    1. When I click on the READ MORE, I would like the full article / txt to be displayed.
    2. I would like the logo that’s associated with the source RSS feed to be displayed when the feed is imported.
    3. I would like the RSS Feed to be collected in real time.

    Many thanks,

    Joyce.

    Phill Moderator
    #482913

    Configuration of feedgator is something you need to aske the feedgator team how to accomplish. It is all quite simple but there are a lot of things that need to be adjusted depending on how the original feed is setup. As for adding a logo, that is something that is often asked of the feedgator team and something they have been promising for a while. Hopefully they will add that feature soon.

    joycesarpong Friend
    #482919

    Hello Phill,

    Thanks for your response.

    Please can you give me details (i.e. URL, email etc) of how to get in touch with the
    Feedgator team?
    U
    Many thanks.

    Phill Moderator
    #482928

    The feedgator support forums can be found here – http://joomlacode.org/gf/project/feedgator/forum/

Viewing 15 posts - 1 through 15 (of 16 total)

This topic contains 16 replies, has 4 voices, and was last updated by  joycesarpong 11 years, 11 months ago.

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