-
AuthorPosts
-
cgc0202 Friend
cgc0202
- Join date:
- August 2007
- Posts:
- 2244
- Downloads:
- 0
- Uploads:
- 3
- Thanks:
- 206
- Thanked:
- 262 times in 1 posts
July 16, 2008 at 2:34 pm #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 Friendavekic
- Join date:
- July 2007
- Posts:
- 71
- Downloads:
- 0
- Uploads:
- 2
- Thanks:
- 14
- Thanked:
- 4 times in 1 posts
July 16, 2008 at 2:34 pm #260210i’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 Friendanisjolly
- Join date:
- April 2008
- Posts:
- 661
- Downloads:
- 0
- Uploads:
- 15
- Thanks:
- 33
- Thanked:
- 96 times in 55 posts
July 16, 2008 at 2:35 pm #260212the 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 Friendcgc0202
- Join date:
- August 2007
- Posts:
- 2244
- Downloads:
- 0
- Uploads:
- 3
- Thanks:
- 206
- Thanked:
- 262 times in 1 posts
July 16, 2008 at 2:39 pm #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 classa => from <a class=”” href=””>link</a>
means the specification for a link
Cornelio
avekic Friendavekic
- Join date:
- July 2007
- Posts:
- 71
- Downloads:
- 0
- Uploads:
- 2
- Thanks:
- 14
- Thanked:
- 4 times in 1 posts
July 16, 2008 at 2:42 pm #260218here 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 Friendanisjolly
- Join date:
- April 2008
- Posts:
- 661
- Downloads:
- 0
- Uploads:
- 15
- Thanks:
- 33
- Thanked:
- 96 times in 55 posts
avekic Friendavekic
- Join date:
- July 2007
- Posts:
- 71
- Downloads:
- 0
- Uploads:
- 2
- Thanks:
- 14
- Thanked:
- 4 times in 1 posts
July 16, 2008 at 2:51 pm #260224yes.
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 Friendcgc0202
- Join date:
- August 2007
- Posts:
- 2244
- Downloads:
- 0
- Uploads:
- 3
- Thanks:
- 206
- Thanked:
- 262 times in 1 posts
July 16, 2008 at 3:30 pm #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
1 user says Thank You to cgc0202 for this useful post
cgc0202 Friendcgc0202
- Join date:
- August 2007
- Posts:
- 2244
- Downloads:
- 0
- Uploads:
- 3
- Thanks:
- 206
- Thanked:
- 262 times in 1 posts
July 16, 2008 at 3:41 pm #260237My 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 Friendcgc0202
- Join date:
- August 2007
- Posts:
- 2244
- Downloads:
- 0
- Uploads:
- 3
- Thanks:
- 206
- Thanked:
- 262 times in 1 posts
July 16, 2008 at 3:49 pm #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 Friendavekic
- Join date:
- July 2007
- Posts:
- 71
- Downloads:
- 0
- Uploads:
- 2
- Thanks:
- 14
- Thanked:
- 4 times in 1 posts
July 16, 2008 at 4:41 pm #260256nothing 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 Friendavekic
- Join date:
- July 2007
- Posts:
- 71
- Downloads:
- 0
- Uploads:
- 2
- Thanks:
- 14
- Thanked:
- 4 times in 1 posts
July 16, 2008 at 4:50 pm #260257I 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 Friendavekic
- Join date:
- July 2007
- Posts:
- 71
- Downloads:
- 0
- Uploads:
- 2
- Thanks:
- 14
- Thanked:
- 4 times in 1 posts
July 16, 2008 at 4:56 pm #260259http://www.joomlart.com/templates_demo.php
and here’s the link – I want it to look like in the Teline 1 demo
avekic Friendavekic
- Join date:
- July 2007
- Posts:
- 71
- Downloads:
- 0
- Uploads:
- 2
- Thanks:
- 14
- Thanked:
- 4 times in 1 posts
July 17, 2008 at 7:41 am #260419I’m desperate… please if someone can look into this….
it is important to mecgc0202 Friendcgc0202
- Join date:
- August 2007
- Posts:
- 2244
- Downloads:
- 0
- Uploads:
- 3
- Thanks:
- 206
- Thanked:
- 262 times in 1 posts
July 17, 2008 at 8:44 am #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 FTPtemplates => 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
-
AuthorPosts
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