- Posts: 3
COMMUNITY FORUM
- Forum
- Commercial Joomla Extensions & Templates
- Frontpage Slideshow
- FPSS 3.0.3 Simple Template - Navigation button backround outline misaligned
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.
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.0.3 Simple Template - Navigation button backround outline misaligned
- Robinson Mitchell
- Topic Author
- Offline
- New Member
Less
More
13 years 1 week ago #44387
by Robinson Mitchell
FPSS 3.0.3 Simple Template - Navigation button backround outline misaligned was created by Robinson Mitchell
Greetings to the forum. I upgraded recently from FPSS2 on a demo website to FPSS 3.0.3. My slideshow uses the Simple template. It's working fine except for one feature - below the graphics the navigation button works properly but the little outline that shows which slide is currently displayed, which moves from slide number to slide number as the slide above changes (if I read the source correctly this div class is called navigation-background) is misaligned up and to the left of the number of the currently showing slide. It works fine, it just does not line up properly.
The Simple slideshow template is also changed from its prior appearance - the navigation buttons used to appear on a background that looked like a folder tab. Now the tab graphic is absent - the nav buttons simply appear on a black background. I can live with that okay, but if it's simple to restore the old appearance I'd like to do that too.
URL is here: p3isys.com/new
I think I simply need to modify the css, but haven't a clue what needs to be done.
The Simple slideshow template is also changed from its prior appearance - the navigation buttons used to appear on a background that looked like a folder tab. Now the tab graphic is absent - the nav buttons simply appear on a black background. I can live with that okay, but if it's simple to restore the old appearance I'd like to do that too.
URL is here: p3isys.com/new
I think I simply need to modify the css, but haven't a clue what needs to be done.
Please Log in or Create an account to join the conversation.
- Katia
- Offline
- Platinum Member
Less
More
- Posts: 4696
13 years 1 week ago #44388
by Katia
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Replied by Katia on topic Re: FPSS 3.0.3 Simple Template - Navigation button backround outline misaligned
This is a css coflict...
Go to modules/mod_fpss/tmpl/Simple/css/template.css.php folder at line 23
and change this:to this:According to the boxes in FPSS navigation the conflict is caused by the margin you give in your template css folder to this element
ul li {
margin: 0.3em 0 0.3em 1.6em;
padding: 0;
}
Go to modules/mod_fpss/tmpl/Simple/css/template.css.php folder at line 23
and change this:
#fpssContainer68.fpss-template-simple .slides-wrapper .slides .slide .slidetext {
background: url("../images/transparent_bg.png") repeat scroll 0 0 transparent;
bottom: 0;
left: 0 ;
margin: 0;
padding: 4px 8px 12px;
position: absolute;
right: 0 ;
width: auto;
z-index: 1;
}
#fpssContainer68.fpss-template-simple .slides-wrapper .slides .slide .slidetext {
background: url("../images/transparent_bg.png") repeat scroll 0 0 transparent;
bottom: 0;
left: 0 !important;
margin: 0;
padding: 4px 8px 12px;
position: absolute;
right: 0 !important;
width: auto;
z-index: 1;
}
ul li {
margin: 0.3em 0 0.3em 1.6em;
padding: 0;
}
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- Robinson Mitchell
- Topic Author
- Offline
- New Member
Less
More
- Posts: 3
13 years 1 week ago #44389
by Robinson Mitchell
Replied by Robinson Mitchell on topic Re: FPSS 3.0.3 Simple Template - Navigation button backround outline misaligned
Thanks very much for your reply Katia!
The actual css file in the file location is a bit different than what is rendered on the website and shows up in Firebug, however I was able to find the proper line and I input the changes. Let me make sure I understand -
I was to insert the comment !important in between the 0 and the semicolon line terminator for left and right. Here is the css segment as rendered by my site after the changes:
The code segment appears to render as you said, but the issue still exists. Did I miss something?
The actual css file in the file location is a bit different than what is rendered on the website and shows up in Firebug, however I was able to find the proper line and I input the changes. Let me make sure I understand -
I was to insert the comment !important in between the 0 and the semicolon line terminator for left and right. Here is the css segment as rendered by my site after the changes:
#fpssContainer68.fpss-template-simple .slides-wrapper .slides .slide .slidetext {
background: url("../images/transparent_bg.png") repeat scroll 0 0 transparent;
bottom: 0;
left: 0 !important;
margin: 0;
padding: 4px 8px 12px;
position: absolute;
right: 0 !important;
width: auto;
z-index: 1;
}
The code segment appears to render as you said, but the issue still exists. Did I miss something?
Please Log in or Create an account to join the conversation.
- Katia
- Offline
- Platinum Member
Less
More
- Posts: 4696
13 years 6 days ago #44390
by Katia
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Replied by Katia on topic Re: FPSS 3.0.3 Simple Template - Navigation button backround outline misaligned
The answer above was about the introtext background which was rendered wrong.
The problem with the squares is being caused by this styling in your template css at /new/templates/jsn_epic_pro/css/template.css
ul li {
margin: 0.3em 0 0.3em 1.6em;
padding: 0;
}
You either erase that or put the FPSS in a container div to solve the conflict.
The problem with the squares is being caused by this styling in your template css at /new/templates/jsn_epic_pro/css/template.css
ul li {
margin: 0.3em 0 0.3em 1.6em;
padding: 0;
}
You either erase that or put the FPSS in a container div to solve the conflict.
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- Robinson Mitchell
- Topic Author
- Offline
- New Member
Less
More
- Posts: 3
12 years 11 months ago #44391
by Robinson Mitchell
Replied by Robinson Mitchell on topic Re: FPSS 3.0.3 Simple Template - Navigation button backround outline misaligned
Thanks very much, and apologies for my inexperience with CSS. I'm starting to understand it a bit.
I fiddled with the template css and found that I can either comment out (delete) the ul li styling or apply the styling as follows:
ul li {
margin: 0 0 0 0;
padding: 0;
}
Either deleting or setting the margin and padding to zero fixes the problem. I also found that I can work around the problem by simply turning off the lavalamp effect in FPSS Module control panel, but I do really like the effect.
Deleting the ul li styling in the template css file messes up bulleted lists in articles, so that is not going to work, nor is setting the margin and padding to zero in the template css going to work for the same reason. So it looks like putting FPSS in a container div will be the preferred method.
That said, what is the best place (file) to put the container div?
Once I know where to put it, do I simply put the styling for ul li inside the container div to specify margin: 0 0 0 0; as shown? Will this affect only the container div without bothering inheritance for other module positions in the template?
Thanks very much for your patience with a slow learner.
It seems
I fiddled with the template css and found that I can either comment out (delete) the ul li styling or apply the styling as follows:
ul li {
margin: 0 0 0 0;
padding: 0;
}
Either deleting or setting the margin and padding to zero fixes the problem. I also found that I can work around the problem by simply turning off the lavalamp effect in FPSS Module control panel, but I do really like the effect.
Deleting the ul li styling in the template css file messes up bulleted lists in articles, so that is not going to work, nor is setting the margin and padding to zero in the template css going to work for the same reason. So it looks like putting FPSS in a container div will be the preferred method.
That said, what is the best place (file) to put the container div?
Once I know where to put it, do I simply put the styling for ul li inside the container div to specify margin: 0 0 0 0; as shown? Will this affect only the container div without bothering inheritance for other module positions in the template?
Thanks very much for your patience with a slow learner.
It seems
Please Log in or Create an account to join the conversation.
- Katia
- Offline
- Platinum Member
Less
More
- Posts: 4696
12 years 11 months ago #44392
by Katia
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Replied by Katia on topic Re: FPSS 3.0.3 Simple Template - Navigation button backround outline misaligned
You just put FPSS inside a div in your template -for example:
<div id= "slideshowBigContainer">
here goes FPSS
</div>
and then you go to the css folder, you find the fpss ul li styling and add the new div like this for example:
#slideshowBigContainer .fpss-template-simple ul.navigation li a {
margin:0 !importatnt;
padding:0 !important;
}
<div id= "slideshowBigContainer">
here goes FPSS
</div>
and then you go to the css folder, you find the fpss ul li styling and add the new div like this for example:
#slideshowBigContainer .fpss-template-simple ul.navigation li a {
margin:0 !importatnt;
padding:0 !important;
}
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- Forum
- Commercial Joomla Extensions & Templates
- Frontpage Slideshow
- FPSS 3.0.3 Simple Template - Navigation button backround outline misaligned