Viewing 15 posts - 16 through 30 (of 32 total)
  • Author
    Posts
  • cgc0202 Friend
    #260209

    <em>@avekic 67059 wrote:</em><blockquote>Cornelio, thanx for detailed explanation.

    I’ll try to work something out in that direction, but i posted another, more specific pic, and if someone knows any faster workaround, or tip, i would much appreciate it.

    …</blockquote>

    There is no easy way avekic, as far as CSS is concerned. It is possible that the instability of the Teline II may be due to poor CSS specifications — not well thought out.

    Make sure you make a copy of the stages of your revisions, be sure to know and record what worked in each stage, plus of course a master copy of the original.

    Good luck.

    Cornelio

    avekic Friend
    #260210

    i’m on it allready 😉

    it seams to me that after all I’will have to study this css deeper than I thought it would be neccessary to fix this awkward problem…

    anisjolly Friend
    #260212

    the reason why the title is that colour is because it is a link.

    if you disable the link in that title it will turn into the same as the HEADLINE text. (i hope) other than that the only way you can display it the same as that is by setting up a new css style and then applying it in the ja_news module. (php pages).

    If you decided to change the css in the green.css template file for that title, you’ll end up changing the background colour for all of the links throughout the site. – that would not be good.

    cgc0202 Friend
    #260217

    <em>@avekic 67063 wrote:</em><blockquote>i’m on it allready 😉

    it seams to me that after all I’will have to study this css deeper than I thought it would be neccessary to fix this awkward problem…</blockquote>

    Yes, that is very true. Please refer back to the response of Menalto, not all the CSS specifications are found in the template.css

    Some of the css files are found in the modules. Menalto, in an earlier stated where you can find the other css files.

    I cannot emphasize these enough — the nested divs.

    In terms of the title, for links, be sure to find the equivalent

    .classspecification a
    {
    specifications here
    }

    where
    .classspecification => refers to the class

    a => from <a class=”” href=””>link</a>

    means the specification for a link

    Cornelio

    avekic Friend
    #260218

    here i go again

    could you please look at the second pic i posted.

    i think that stuff can not be don in css…. some ohter file needs to be modified… but which one?

    anisjolly Friend
    #260221

    it’s ja_news.css

    I think you’ll find it in the ja_news component / module folder (I think)

    avekic Friend
    #260224

    yes.

    actually for this version it is called ja.news.css and it is located in modules/ja_news – this one works when you select use module’s css under backend options

    there is another ja-news.css located in templates/ja_teline/css – this one is concerned when mentioned option is set to no.

    but both of them are used for elements styling, and that doesn’t help.

    please look at the second pic i posted today for more specific explanation of what i need exactly.

    that must be done inside some ohter file? which one?

    cgc0202 Friend
    #260235

    <em>@avekic 67078 wrote:</em><blockquote>yes.

    actually for this version it is called ja.news.css and it is located in modules/ja_news – this one works when you select use module’s css under backend options

    there is another ja-news.css located in templates/ja_teline/css – this one is concerned when mentioned option is set to no.

    </blockquote>

    <em>@avekic 67078 wrote:</em><blockquote>

    but both of them are used for elements styling, and that doesn’t help.

    please look at the second pic i posted today for more specific explanation of what i need exactly.

    that must be done inside some ohter file? which one?</blockquote>

    Did you look at these:


    a.ja-newscat, a.ja-newscat:hover, a.ja-newscat:active, a.ja-newscat:focus
    {
    display: block;
    border-bottom: 3px solid #666666;
    margin: 0 0 5px;
    position: relative;
    font: bold 125%/normal Cambria, "Times New Roman", Times, serif;
    }

    .ja-newscatwrap .hover .ja-newscat,
    .ja-newsitem-left:hover .ja-newscat,
    .ja-newsitem-center:hover .ja-newscat,
    .ja-newsitem-right:hover .ja-newscat {
    border-bottom: 3px solid #006DA3!important;
    }

    a.ja-newscat span
    {
    font-weight: bold;
    padding: 2px 5px 2px;
    background: #666666;
    color: #FFFFFF;
    text-transform: uppercase;
    }

    .ja-newscatwrap .hover .ja-newscat span,
    .ja-newsitem-left:hover .ja-newscat span,
    .ja-newsitem-center:hover .ja-newscat span,
    .ja-newsitem-right:hover .ja-newscat span
    {
    background: #006DA3;
    }

    Before you do anything, can you look at the nested divs for the

    HEADLINE

    If the above are used. If they are, just sort of copy the CSS specification that you have in your HEADLINE. The colors above are dark gray, use the colors used in your HEADLINE to get your green color.

    Cornelio

    cgc0202 Friend
    #260237

    My guess is that it would be these where you make the changes for the box itself

    a.ja-newscat span
    {
    font-weight: bold;
    padding: 2px 5px 2px;
    background: #666666;
    color: #FFFFFF;
    text-transform: uppercase;
    }

    before you do anything, revise the above

    a.ja-newscat span
    {
    font-weight: bold;
    padding: 2px 5px 2px;
    background: #666666;
    color: #FFFFFF;
    text-transform: uppercase;
    border: solid;
    border: 1px 1px 1px 1px;
    } /* orig background: #666666; color: #FFFFFF; text-transform: uppercase; added border: solid; border: 1px 1px 1px 1px;*/

    if the boxed titles get borders in them then it is the correct one.

    If others are boxed also, then that may become a problem

    cgc0202 Friend
    #260242

    <em>@anisjolly 67074 wrote:</em><blockquote>it’s ja_news.css

    I think you’ll find it in the ja_news component / module folder (I think)</blockquote>

    It depends how the template was used, and if it is, it has not been included in the index.php

    templates => ja_teline => index.php


    <head>

    <link href="<?php echo $ja_template_path;?>/css/template_css.css" rel="stylesheet" type="text/css" />
    <link href="<?php echo $ja_template_path;?>/css/ja-news.css" rel="stylesheet" type="text/css" />

    <?php if (mosCountModules('ja-tab1') || mosCountModules('ja-tab2')) {?>
    <link href="<?php echo $ja_template_path;?>/css/ja-tab-modules.css" rel="stylesheet" type="text/css" />
    <?php } ?>
    </head>

    Or there is another way that it is summoned. I want to know myself.

    Cornelio

    avekic Friend
    #260256

    nothing again

    Cornelio, I allready tried everything you suggested, but nothing helped…

    maybe you’re not getting what I’m saying:

    can I please send you my user and pass, so that you look at it for yourself? it wolud take 10 minutes for you to figure out what’s happening, and what I want.

    avekic Friend
    #260257

    I tried to find what is it about with firefox plugin firebug.

    On the first pic element is selected for which I want to figure out how to make him like in original template.

    Second is his html code (i guess)…. Do you see empty space in span class title-r? The highlighted code should be somehow transferred to that space, and than it would fit in that litle green area

    avekic Friend
    #260259

    http://www.joomlart.com/templates_demo.php

    and here’s the link – I want it to look like in the Teline 1 demo

    avekic Friend
    #260419

    I’m desperate… please if someone can look into this….
    it is important to me

    cgc0202 Friend
    #260444

    <em>@avekic 67306 wrote:</em><blockquote>I’m desperate… please if someone can look into this….
    it is important to me</blockquote>

    Hi avekic,

    What Joomla version did you use?

    I am not an expert on this, I have no scripting background. When I used JA Teline (with Joomla 1.0x), the only css I used were those in the template directory.

    Based from the latest page source you provided the issue you show is a css issue.

    If the css in the template is not working, then the only other choice is css in the module, of the same name. That is the only one I could think of now. I do not know how to do the script to do this, but the css from the module must be recognized by the system: and this script added to the index.php

    if you look in the index.php

    **************
    Via FTP

    templates => ja_teline => index.php
    ***************

    If you open, index.php, check how they added the script to integrate the recognition of the css. You will find these between

    <head>
    (instruction scripts here, including css)
    </head>

    Just curious avekic,

    Is there a reason why you chose the original Teline over the more appropriate Teline II. The latter is a true magazine.

    There are some issues with Teline II, but there are several of us who have been working with it the past two months, and many issues have been resolved there. More people can help you with JA Teline II.

    Cornelio

Viewing 15 posts - 16 through 30 (of 32 total)

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

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