Viewing 15 posts - 1 through 15 (of 30 total)
  • Author
    Posts
  • ilhl Friend
    #207877

    Hi guys,

    i am new here and also new to the whole Joomla Thing, so first of all i want to apologize for all my questions that will come – i think there will be plenty of and many of them will probably Sound stupid to you. I hope you don’t mind.

    I have already some questions regarding articles and marked them as numbers on the Screen:

      i’ve created an article under the category “Services”, but when i open it – there is no masshead like at your template service-articles. Where do I define that? I mean it doesn’t even look bad without it, but I want to understand – probably I will need it another time.
      the same for the menu at the right – where to define that?
      “next”-Button – where to define that? I want to have the possibility to remove it.
      the number of hits ist marked to Show you the Problem. The Problem ist, that that number as well as the creation date seems to be in white color. Where can I Change that? I dind’t Change any css files or anything, so this issue is a Little bit surprising to me.
      how to remove the date, written by and published in?
      the same as 5 – how to remove “created” and “hit”?

    To all that Points, especially for 3 to 6, some Explanation:
    it’s great to have that data/Points displayed in a blog or something, but there are some pages, that contain General Information which will never (probably) change – for such pages i think it’s not nice to see something like “created in April 1999”. But as i said – in general i like it and probably will need it, so i want to have Options – display such things or not. So i don’t want to Switch These things off in General, but only for some articles. I think i will have to create an own category for such articles?

    Thanks in advance and sorry once again, if some of the questions are too stupid :-[


    1. article1
    Ninja Lead Moderator
    #575785

    You can find my answer with your quest below

    1) 2) I guess JA Masshead module and right menu are not assigned to all pages and that’s why it does not show all other pages. You can assign it like as the screenshot

    and you will see it’s working as my screenshot below

    3) Create templates/ja_nuevo/css/custom.css file and add new css style below


    .item-page ul.pager.pagenav {
    display: none;
    }

    4) 5) Go to Admin site -> Article Manager -> click Option button -> and set all dates to Hide


    1. Screen-Shot-2015-06-29-at-12.07.03
    2. Screen-Shot-2015-06-29-at-14.23.26
    3. Screen-Shot-2015-06-29-at-12.08.47
    Ninja Lead Moderator
    #642114

    You can find my answer with your quest below

    1) 2) I guess JA Masshead module and right menu are not assigned to all pages and that’s why it does not show all other pages. You can assign it like as the screenshot

    and you will see it’s working as my screenshot below

    3) Create templates/ja_nuevo/css/custom.css file and add new css style below


    .item-page ul.pager.pagenav {
    display: none;
    }

    4) 5) Go to Admin site -> Article Manager -> click Option button -> and set all dates to Hide

    Ninja Lead Moderator
    #740774

    You can find my answer with your quest below

    1) 2) I guess JA Masshead module and right menu are not assigned to all pages and that’s why it does not show all other pages. You can assign it like as the screenshot

    and you will see it’s working as my screenshot below

    3) Create templates/ja_nuevo/css/custom.css file and add new css style below


    .item-page ul.pager.pagenav {
    display: none;
    }

    4) 5) Go to Admin site -> Article Manager -> click Option button -> and set all dates to Hide

    ilhl Friend
    #575799

    As i see now it didn’t work out with the list numbers in my first post))

    1) and 2) – got it now, thanks. Am i right, when i think that it is possible to have more than 1 masshead, so i could assign another one to each category?

    3) i guess this will remove the “next” button generally from all posts? I just want to remove it from particular posts.
    got it with menu/article options

    5) and 6) the same here – don’t want to remove this in general, but only for particular posts. I’m planning to have some information pages, where all this information about who created it and then, is irrelevant, because the information is a generally information. It’s like the “about” page – it’s published under “pages” but has no “next” and no data about date, creation and author.
    Besides i also plan to have a blog, where such data is interesting. So a general solution is not the right way.
    ok, it is also possible to set these options for the menu/article, so this one is what i wanted then.
    now i got all the data out, but the grey bar at the bottom of the picture is still there and that looks strange.. can i get it out?

    4) you missed that one because of my error with the list numbers. On my page the number of hits is as well as the creation date in white color and therefore not visible. Where can I repair that? I want to have these numbers for my blog.


    1. article_image
    Ninja Lead Moderator
    #575858

    Regarding all options setting in Article you can find them at Article Manager

    and about article Hits you can see them here

    You can give me the URL of your site and I will help you to check it further.


    1. Screen-Shot-2015-06-30-at-10.20.57
    2. Screen-Shot-2015-06-30-at-10.22.57
    ilhl Friend
    #576048

    yes, but when talking about the hits issue, it’s not about settings in joomla backoffice.. if you look at the demo site, the hits are visible, because they are in blue color.. at my demo the number of hits and the date seems to be of white text color, because they are nor visible.. they become visible when marked with the mouse – see my screenshot in the thread opened.. so i think something gone wrong with the css maybe or with the assignement to the css..

    Ninja Lead Moderator
    #576082

    This way will help you to change color hit and create date in footer page

    Create templates/ja_nuevo/css/custom.css file and add new rule

    .article-footer .hits span, .article-footer .create span {
    color: #b3b3b3 ;
    }

    ilhl Friend
    #576156

    yeah, that’s it, thanks!

    one more question – i asked about this grey bar under the picture, that’s above the article (see post #3). Is it a setting thing and i can switch it off for particular articles or is it a css thing?

    ilhl Friend
    #642482

    yeah, that’s it, thanks!

    one more question – i asked about this grey bar under the picture, that’s above the article (see post #3). Is it a setting thing and i can switch it off for particular articles or is it a css thing?

    ilhl Friend
    #741141

    yeah, that’s it, thanks!

    one more question – i asked about this grey bar under the picture, that’s above the article (see post #3). Is it a setting thing and i can switch it off for particular articles or is it a css thing?

    Ninja Lead Moderator
    #576187

    Here you are the solution to get the grey bar out by

    Open templates/ja_nuevo/css/custom.css file and add script below

    .intro-image-wrap .article-aside {
    display: none;
    }

    Ninja Lead Moderator
    #642513

    Here you are the solution to get the grey bar out by

    Open templates/ja_nuevo/css/custom.css file and add script below

    .intro-image-wrap .article-aside {
    display: none;
    }

    Ninja Lead Moderator
    #741172

    Here you are the solution to get the grey bar out by

    Open templates/ja_nuevo/css/custom.css file and add script below

    .intro-image-wrap .article-aside {
    display: none;
    }

    ilhl Friend
    #576458

    thanks!
    so this will be a General Adaptation, means for all articles and Images..is there any Change to make this for particular Images? I mean the bar is useful if u have all this data like author, date and category – i want to Keep this for the blog articles, so i would also like to Keep the bar for it. But for the “General” articles like “who we are and what we did”, “our history” or smth. this data would make no sense and so also the bar..

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

This topic contains 30 replies, has 2 voices, and was last updated by  ilhl 9 years, 4 months ago.

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