Keyword
Please note that official support for commercial extensions & templates is provided in the Subscriber Help Desk.
Support requests should ONLY be directed there and require an active subscription plan.
This forum board is to be used for archive purposes and knowledge exchange ONLY.

FPSS 3 question

  • Parelweb
  • Parelweb's Avatar Topic Author
  • Offline
  • New Member
More
13 years 4 weeks ago - 13 years 4 weeks ago #43850 by Parelweb
FPSS 3 question was created by Parelweb
I've 2 questions regarding FPSS 3

1. How can i change the color of the titles used in the text over the images? I've searched the hex-code but can't find it in the template.

2. How can i make the title and image not-clickable?

Kind regards,

Hans

Please Log in or Create an account to join the conversation.

More
13 years 4 weeks ago #43851 by Katia
Replied by Katia on topic Re: FPSS 3 question
1.If you search at the forum you will find many replies related to changing title color.
If not, please provide me with a link of your slideshow, so as to see the FPSS template you use and explain me what exactly you are trying to change so as to help you.

2.You should just disable all the options -in FPSS module and component-that are related to links.

JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)

Please Log in or Create an account to join the conversation.

  • Parelweb
  • Parelweb's Avatar Topic Author
  • Offline
  • New Member
More
13 years 4 weeks ago #43852 by Parelweb
Replied by Parelweb on topic Re: FPSS 3 question
Link is: kleinkeukens

I want the text blue and no hover. I've now made two empty articles where i point to in the component. In the article "link title" is disabled.

Please Log in or Create an account to join the conversation.

More
13 years 3 weeks ago - 13 years 3 weeks ago #43853 by Katia
Replied by Katia on topic Re: FPSS 3 question
Go to modules/mod_fpss/tmpl/JJ-Rasper/css/template.css.php file at line 26 and change the color

.fpss-template-jj-rasper .slidetext h1, .fpss-template-jj-rasper .slidetext h1 a {
    color: #99CC00;
    font-family: "Trebuchet MS",Trebuchet,Arial,Verdana,sans-serif;
    font-size: 24px;
    line-height: 120%;
    margin: 0;
    padding: 0;
}

to  color: #0091DC;

Link options should be disabled in module and component...

JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)

Please Log in or Create an account to join the conversation.

  • Parelweb
  • Parelweb's Avatar Topic Author
  • Offline
  • New Member
More
13 years 3 weeks ago #43854 by Parelweb
Replied by Parelweb on topic Re: FPSS 3 question
I can't fint the line with the hex-code in that file. In my line it's:

.fpss-template-jj-rasper .slidetext h1 a {font-family:"Trebuchet MS", Trebuchet, Arial, Verdana, sans-serif;font-size:24px;line-height:120%;margin:0;padding:0;color:#9c0;}

When i change #9c0 to #0091DC nothing happens

The whole structure of my css (standard installation) is:

<?php
if(!isset($fpssTemplateIncluded)){
header("Content-type: text/css; charset: utf-8");
$width = (int) $_GET;
$height = (int) $_GET;
$sidebarWidth = (int) $_GET;
$thumbnailViewportWidth = (int) $_GET;
$thumbnailViewportHeight = (int) $_GET;
$timer = (bool) $_GET;
$mid = (int) $_GET;
}
?>
/**
* @version $Id: template.css.php 670 2011-09-19 15:35:24Z joomlaworks $
* @package Frontpage Slideshow
* @author    JoomlaWorks - www.joomlaworks.net
* @copyright Copyright (c) 2006 - 2011 JoomlaWorks Ltd. All rights reserved.
* @license Commercial - This code cannot be redistributed without permission from JoomlaWorks Ltd.
*/

/* --- Slideshow Container --- */
#fpssContainer<?php echo $mid; ?>.fpss-template-jj-rasper {position:relative;width:<?php echo $width; ?>px;height:<?php echo $height; ?>px;margin:4px auto;border:1px solid #ccc;padding:2px;overflow:hidden;font-family:"Trebuchet MS", Trebuchet, Arial, Verdana, sans-serif;}

/* --- Loader --- */
#fpssContainer<?php echo $mid; ?>.fpss-template-jj-rasper .slide-loading {position:absolute;width:<?php echo $width; ?>px;height:<?php echo $height; ?>px;background:#000 url(../images/loading_black.gif) no-repeat 50% 50%;z-index:99;}

/* --- Timer (progress bar) --- */
<?php if($timer): ?>
#fpssContainer<?php echo $mid; ?>.fpss-template-jj-rasper .fpssTimerContainer {position:absolute;bottom:2px;left:2px;right:2px;z-index:101;}
#fpssContainer<?php echo $mid; ?>.fpss-template-jj-rasper .fpssTimerContainer .fpssTimer {width:0;clear:both;height:6px;background-color:#9c0;}
<?php else: ?>
#fpssContainer<?php echo $mid; ?>.fpss-template-jj-rasper .fpssTimerContainer,
#fpssContainer<?php echo $mid; ?>.fpss-template-jj-rasper .fpssTimerContainer .fpssTimer {display:none;}
<?php endif; ?>

/* --- Slide Containers --- */
#fpssContainer<?php echo $mid; ?>.fpss-template-jj-rasper .slides-wrapper {width:<?php echo $width; ?>px;height:<?php echo $height; ?>px;margin:0;padding:0;position:relative;overflow:hidden;background:#000;}
.fpss-template-jj-rasper .slides-wrapper .slides {}
#fpssContainer<?php echo $mid; ?>.fpss-template-jj-rasper .slide {width:<?php echo $width; ?>px;height:<?php echo $height; ?>px;overflow:hidden;list-style:none;}
#fpssContainer<?php echo $mid; ?>.fpss-template-jj-rasper .slidetext {position:absolute;top:0;left:50px;width:40%;height:<?php echo $height-24; ?>px;margin:0;padding:12px 8px;background:url(../images/transparent_bg.png);z-index:1;}

/* --- Slide Content --- */
.fpss-template-jj-rasper .slidetext h1,
.fpss-template-jj-rasper .slidetext h1 a {font-family:"Trebuchet MS", Trebuchet, Arial, Verdana, sans-serif;font-size:24px;line-height:120%;margin:0;padding:0;color:#9c0;}
.fpss-template-jj-rasper .slidetext h1 a:hover {color:#fff;text-decoration:none;}
.fpss-template-jj-rasper .slidetext h2 {font-size:11px;color:#999;margin:0;padding:2px 0;}
.fpss-template-jj-rasper .slidetext h3 {font-size:13px;margin:2px 0;padding:1px 0;color:#ccc;border-top:1px solid #aaa;border-bottom:1px solid #aaa;}
.fpss-template-jj-rasper .slidetext h4 {font-size:11px;margin:0;padding:0;color:#999;font-style:italic;}
.fpss-template-jj-rasper .slidetext p {margin:4px 0 12px 0;padding:0;color:#fff;}
.fpss-template-jj-rasper .slidetext a.fpssReadMore {margin:0;padding:1px 4px;border:none;background:#222;color:#fff;text-decoration:none;display:inline;}
.fpss-template-jj-rasper .slidetext a.fpssReadMore:hover {margin:0;padding:1px 4px;border:none;background:#fff;color:#222;text-decoration:none;display:inline;}

/* --- Navigation --- */
.fpss-template-jj-rasper .navigation-wrapper {position:absolute;bottom:16px;right:16px;margin:0;padding:0;text-align:right;z-index:97;}
.fpss-template-jj-rasper .navigation {list-style:none;margin:0;padding:0;}
.fpss-template-jj-rasper .navigation li {float:left;margin:0 2px;padding:0;width:16px;}
.fpss-template-jj-rasper .navigation li.navigation-previous a {float:left;display:block;width:16px;height:16px;background:url(../images/nav-left.png) no-repeat;border:none;margin:0;padding:0;}
.fpss-template-jj-rasper .navigation li.navigation-next a {float:left;display:block;width:16px;height:16px;background:url(../images/nav-right.png) no-repeat;border:none;margin:0;padding:0;}

/* --- Generic Styling (highly recommended) --- */
.fpss-template-jj-rasper a {cursor:pointer;}
.fpss-template-jj-rasper a:active,
.fpss-template-jj-rasper a:focus {outline:0;outline:expression(hideFocus='true');}
.fpss-template-jj-rasper img {border:none;}
.fpss-template-jj-rasper .slidetext img,
.fpss-template-jj-rasper .slidetext p img {display:none;}
.fpss-clr {clear:both;float:none;height:0;line-height:0;margin:0;padding:0;border:0;}

/* --- IE Specific Styling (use body.fpssIsIE6, body.fpssIsIE7, body.fpssIsIE8 to target specific IEs) --- */
body.fpssIsIE6 .fpss-template-jj-rasper .slidetext {bottom:-1px;background:#444;}
body.fpssIsIE6 .fpss-template-jj-rasper .navigation li.navigation-previous a {background:url(../images/nav-left-ie.png) no-repeat;border:1px solid #777;}
body.fpssIsIE6 .fpss-template-jj-rasper .navigation li.navigation-next a {background:url(../images/nav-right-ie.png) no-repeat;border:1px solid #777;}
body.fpssIsIE6 .fpss-clr,
body.fpssIsIE7 .fpss-clr {display:none;}

/* --- End of stylesheet --- */

Please Log in or Create an account to join the conversation.

  • Parelweb
  • Parelweb's Avatar Topic Author
  • Offline
  • New Member
More
13 years 3 weeks ago #43855 by Parelweb
Replied by Parelweb on topic Re: FPSS 3 question
anyone a suggestion?

Please Log in or Create an account to join the conversation.

More
13 years 3 weeks ago #43856 by Katia
Replied by Katia on topic Re: FPSS 3 question
Sorry the correct location is  modules/mod_fpss/tmpl/JJ-Rasper/css/template.css.php file at line 26 and change the color

(I have corrected in my previous post)

JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)

Please Log in or Create an account to join the conversation.


Powered by Kunena Forum