- Posts: 6
COMMUNITY FORUM
- Forum
- Commercial Joomla Extensions & Templates
- Frontpage Slideshow
- Move fpss-introtext container to the right in the movies template
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.
Move fpss-introtext container to the right in the movies template
- griego62
- Topic Author
- Offline
- New Member
Less
More
12 years 10 months ago #45737
by griego62
Move fpss-introtext container to the right in the movies template was created by griego62
Hello to all. In the movies template, I want to move the fpss-introtext container to the right but I can't seem to find where to do it from. Can somebody please help me? Thank you.
Please Log in or Create an account to join the conversation.
- Katia
- Offline
- Platinum Member
Less
More
- Posts: 4696
12 years 10 months ago #45738
by Katia
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Replied by Katia on topic Re: Move fpss-introtext container to the right in the movies template
Do you want to hide the grey film and everything included in or just hide introtext?
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- griego62
- Topic Author
- Offline
- New Member
Less
More
- Posts: 6
12 years 10 months ago #45739
by griego62
Replied by griego62 on topic Re: Move fpss-introtext container to the right in the movies template
Hi again. I don't want to hide anything necessarily...or I haven't understood you. The gray film is hiding part of my photos and I just want to move it to the right. I include photo to make things clearer. Thanks for your time!
Please Log in or Create an account to join the conversation.
- Katia
- Offline
- Platinum Member
Less
More
- Posts: 4696
12 years 10 months ago - 12 years 10 months ago #45740
by Katia
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Replied by Katia on topic Re: Move fpss-introtext container to the right in the movies template
Please provide me with a link to your site to give you some css instructions.
However this is not the right way... In fact the image you use is too small that is why you have this ugly gray gap in the right part of the slideshow.
However this is not the right way... In fact the image you use is too small that is why you have this ugly gray gap in the right part of the slideshow.
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- griego62
- Topic Author
- Offline
- New Member
Less
More
- Posts: 6
12 years 9 months ago #45741
by griego62
Replied by griego62 on topic Re: Move fpss-introtext container to the right in the movies template
Sure. www.rebozoseldetalle.com/nuevo/. Thank you.
Please Log in or Create an account to join the conversation.
- Katia
- Offline
- Platinum Member
Less
More
- Posts: 4696
12 years 9 months ago #45742
by Katia
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Replied by Katia on topic Re: Move fpss-introtext container to the right in the movies template
Just go to /nuevo/modules/mod_fpss/tmpl/Movies/css/template_css.php
and change this:
.fpss-introtext {
background: url("../images/transparent_bg.png") repeat scroll 0 0 transparent;
bottom: 0;
font-size: 11px;
height: auto;
left: 43px;
margin: 0;
padding: 0;
position: absolute;
top: 0;
width: 43%;
}
to this:
.fpss-introtext {
background: url("../images/transparent_bg.png") repeat scroll 0 0 transparent;
bottom: 0;
font-size: 11px;
height: auto;
left: 250px;
margin: 0;
padding: 0;
position: absolute;
top: 0;
width: 50%;
}
and change this:
.fpss-introtext {
background: url("../images/transparent_bg.png") repeat scroll 0 0 transparent;
bottom: 0;
font-size: 11px;
height: auto;
left: 43px;
margin: 0;
padding: 0;
position: absolute;
top: 0;
width: 43%;
}
to this:
.fpss-introtext {
background: url("../images/transparent_bg.png") repeat scroll 0 0 transparent;
bottom: 0;
font-size: 11px;
height: auto;
left: 250px;
margin: 0;
padding: 0;
position: absolute;
top: 0;
width: 50%;
}
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- griego62
- Topic Author
- Offline
- New Member
Less
More
- Posts: 6
12 years 9 months ago #45743
by griego62
Replied by griego62 on topic Re: Move fpss-introtext container to the right in the movies template
Thanks for your reply Katia. I've been trying to fix it from where you sent me in the exact same way as this is what firebug gives me but, as I am no expert with css and the rest (self taught), this is the problem that I'm confronting: my template_css.php file has this instead of what you told me to change:
/* --- Content --- */
.fpss-introtext {width:43%;height:auto;font-size:11px;margin:0;padding:0;position:absolute;top:0;bottom:0;background:url(../images/transparent_bg.png);left:<?php echo round($width/12); ?>px;}
.fpss-introtext .slidetext {margin:0;padding:0 8px;}
This is why I'm so confused. Isn't the "left:<?php echo round($width/12); ?>px;}" telling me that I have to look at another file? Lousy with php...please explain. I appreciate your time.
/* --- Content --- */
.fpss-introtext {width:43%;height:auto;font-size:11px;margin:0;padding:0;position:absolute;top:0;bottom:0;background:url(../images/transparent_bg.png);left:<?php echo round($width/12); ?>px;}
.fpss-introtext .slidetext {margin:0;padding:0 8px;}
This is why I'm so confused. Isn't the "left:<?php echo round($width/12); ?>px;}" telling me that I have to look at another file? Lousy with php...please explain. I appreciate your time.
Please Log in or Create an account to join the conversation.
- Katia
- Offline
- Platinum Member
Less
More
- Posts: 4696
12 years 9 months ago #45744
by Katia
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Replied by Katia on topic Re: Move fpss-introtext container to the right in the movies template
So just replace
left:<?php echo round($width/12); ?>px;} with
left:250px;
left:<?php echo round($width/12); ?>px;} with
left:250px;
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- griego62
- Topic Author
- Offline
- New Member
Less
More
- Posts: 6
12 years 9 months ago #45745
by griego62
Replied by griego62 on topic Re: Move fpss-introtext container to the right in the movies template
Thanks Katia. That did the job. Ευχαριστώ πολύ.
Please Log in or Create an account to join the conversation.
- Katia
- Offline
- Platinum Member
Less
More
- Posts: 4696
12 years 9 months ago #45746
by Katia
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Replied by Katia on topic Re: Move fpss-introtext container to the right in the movies template
You are welcome!
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
- Move fpss-introtext container to the right in the movies template