-
AuthorPosts
-
fdr77 Friend
fdr77
- Join date:
- April 2011
- Posts:
- 104
- Downloads:
- 0
- Uploads:
- 39
- Thanks:
- 13
- Thanked:
- 3 times in 1 posts
May 9, 2011 at 11:09 am #390404I solved it by putting them and the slideshow … in the slideshow position …. but IE is not good.In firefox e chrome is ok
Is there anything I can do to fix up or should i give some class suffix?himangi Friendhimangi
- Join date:
- April 2011
- Posts:
- 1406
- Downloads:
- 1
- Uploads:
- 86
- Thanks:
- 21
- Thanked:
- 345 times in 332 posts
May 9, 2011 at 12:01 pm #390408Can you please post your site url here? I will take a look and see if I can suggest you any css changes to fix it..
fdr77 Friendfdr77
- Join date:
- April 2011
- Posts:
- 104
- Downloads:
- 0
- Uploads:
- 39
- Thanks:
- 13
- Thanked:
- 3 times in 1 posts
May 9, 2011 at 12:29 pm #390411Thanks
http://www.discusrewind.net/
Only the IE give me problem >:(fdr77 Friendfdr77
- Join date:
- April 2011
- Posts:
- 104
- Downloads:
- 0
- Uploads:
- 39
- Thanks:
- 13
- Thanked:
- 3 times in 1 posts
May 9, 2011 at 9:37 pm #390458I checked all the slides for joomla and only this has the Ken Burns effect and the thumbnail.
We hope that we can solve the problem.
Thank you for your considerationfdr77 Friendfdr77
- Join date:
- April 2011
- Posts:
- 104
- Downloads:
- 0
- Uploads:
- 39
- Thanks:
- 13
- Thanked:
- 3 times in 1 posts
May 14, 2011 at 4:33 pm #391244himangi Friendhimangi
- Join date:
- April 2011
- Posts:
- 1406
- Downloads:
- 1
- Uploads:
- 86
- Thanks:
- 21
- Thanked:
- 345 times in 332 posts
May 16, 2011 at 7:03 am #391372Hi,
Glad to know you have solved all the issues. 🙂
To add TOP link you need to add <block name=”navhelper” type=”navhelper” main-inner=”1″></block> in the template layout, wherever you want to place the link in bottom block.
This code line will also add the breadcrumbs in your template. if you dont want that then follow the steps below to keep only TOP link.
1. Login via FTP. Go to plugins/system/jat3/jat3/base-themes/default/blocks and copy navhelper.php
2. Now go to templates/your_template/blocks and paste the copied file here.
3. Edit the navhelper.php in your template and comment / remove the following code and save the file.
<blockquote><div class=”ja-breadcrums”>
<jdoc:include type=”module” name=”breadcrumbs” />
</div></blockquote>fdr77 Friendfdr77
- Join date:
- April 2011
- Posts:
- 104
- Downloads:
- 0
- Uploads:
- 39
- Thanks:
- 13
- Thanked:
- 3 times in 1 posts
May 16, 2011 at 12:49 pm #391457I do not want to be in a new block, but in the block foot-nav
i have modified so my template/blocks/footer.php
<?php if($this->countModules('footnav')) : ?>
<div class="ja-footnav">
<jdoc:include type="modules" name="footnav" />
<a href="<?php echo $this->getCurrentURL();?>#Top" title="Back to Top"><?php echo JText::_('Top') ?></a>
</div>
<?php endif; ?>but don’t work fine
fdr77 Friendfdr77
- Join date:
- April 2011
- Posts:
- 104
- Downloads:
- 0
- Uploads:
- 39
- Thanks:
- 13
- Thanked:
- 3 times in 1 posts
May 16, 2011 at 12:52 pm #391459fdr77 Friendfdr77
- Join date:
- April 2011
- Posts:
- 104
- Downloads:
- 0
- Uploads:
- 39
- Thanks:
- 13
- Thanked:
- 3 times in 1 posts
May 16, 2011 at 2:03 pm #391471i changed so
<?php if($this->countModules('footnav')) : ?>
<div class="ja-footnav">
<jdoc:include type="modules" name="footnav" />
<ul class="ja-links">
<li class="top"><a href="<?php echo $this->getCurrentURL();?>#Top" title="Back to Top"><?php echo JText::_('Top') ?></a></li>
</ul>
</div>but it isn’t ok
fdr77 Friendfdr77
- Join date:
- April 2011
- Posts:
- 104
- Downloads:
- 0
- Uploads:
- 39
- Thanks:
- 13
- Thanked:
- 3 times in 1 posts
May 17, 2011 at 2:30 am #391524any suggestions to solve?
is not so important to have this button …. but if I could ….himangi Friendhimangi
- Join date:
- April 2011
- Posts:
- 1406
- Downloads:
- 1
- Uploads:
- 86
- Thanks:
- 21
- Thanked:
- 345 times in 332 posts
May 17, 2011 at 11:02 am #391608The modification in footer.php is right. I think the only thing you need is styling change to place the Top link where you want. Try the following..
1.In your tempalte.css find .ja-links {some styling} Add float:right; width:5%; if the styling is not there for ja-links.
2. Then find #ja-footer .ja-footnav ul {some styling } or .ja-footnav ul {some styling} and add float:left; width:91%; if it is not there.
3. Save template.css file and check the TOP link in frontend.
fdr77 Friendfdr77
- Join date:
- April 2011
- Posts:
- 104
- Downloads:
- 0
- Uploads:
- 39
- Thanks:
- 13
- Thanked:
- 3 times in 1 posts
May 17, 2011 at 12:58 pm #391628changed so
/* Extras ---*/
.ja-links { padding-right: 10px; float:right; width:5%; }.ja-links li { padding: 0 10px; float:right; width:5%; }
/* Footnav ---*/
#ja-footer .ja-footnav ul {
border-bottom: 1px dotted #333;
overflow: hidden;
padding-bottom: 8px;
padding-left: 4px;
float: left;
width:91%;
}#ja-footer .ja-footnav ul li {
border-left: 1px dotted #333;
display: block;
float: left;
width:91%;line-height: normal;
padding: 0 8px;
}but nothing
fdr77 Friendfdr77
- Join date:
- April 2011
- Posts:
- 104
- Downloads:
- 0
- Uploads:
- 39
- Thanks:
- 13
- Thanked:
- 3 times in 1 posts
May 17, 2011 at 2:41 pm #391640modified so
/* Footnav ---*/
#ja-footer .ja-footnav ul {
border-bottom: 1px dotted #333;
overflow: hidden;
padding-bottom: 8px;
padding-left: 4px;
float:left;
}#ja-footer .ja-footnav ul li {
border-left: 1px dotted #333;
display: block;
float: left;line-height: normal;
padding: 0 8px;
}/* Extras ---*/
.ja-links { padding-right: 10px; float:right; width:5%; margin-top:0; }.ja-links li { padding: 0 10px; float:right; margin-top:0; }
to get this… (is right?)
but I can not for the float right
himangi Friendhimangi
- Join date:
- April 2011
- Posts:
- 1406
- Downloads:
- 1
- Uploads:
- 86
- Thanks:
- 21
- Thanked:
- 345 times in 332 posts
May 18, 2011 at 7:23 am #391758I am sorry I did not mention the styling correctly.
Instead of #ja-footer .ja-footnav ul {some styling } or .ja-footnav ul {some styling} and add float:left; width:91%;
add .ja-footnav ul#mainlevel-nav{width:91%; float:left;}fdr77 Friendfdr77
- Join date:
- April 2011
- Posts:
- 104
- Downloads:
- 0
- Uploads:
- 39
- Thanks:
- 13
- Thanked:
- 3 times in 1 posts
May 18, 2011 at 5:10 pm #391842the only way to get it to work was this … is right?
.ja-links { padding-right: 10px; float:right; width:5%; margin-top:0; }
.ja-links li { padding: 0 10px; float:right; margin-top:0; }
/* Footnav ---*/
#ja-footer .ja-footnav ul {
border-bottom: 1px dotted #333;
overflow: hidden;
padding-bottom: 8px;
padding-left: 4px;
float: left;
}#ja-footer .ja-footnav ul li {
border-left: 1px dotted #333;
display: block;
float: left;line-height: normal;
padding: 0 8px;
}
.ja-footnav ul#mainlevel-nav{width:91%; float:left;}/* Foot Logo ---*/
AuthorPostsThis topic contains 34 replies, has 2 voices, and was last updated by fdr77 13 years, 6 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum
Jump to forum