Home News Contact Us Forum About Us Demos Products F.A.Q.
Shopping Cart
You currently have 0 items in your cart.


Recent Events
  • 31/12/2023 New Year SALE

    We are glad to announce New Year SALE. 25% discount for all our extensions. Use NY24 coupon code. Hurry up the discount is valid till 7 January.

  • 21/11/2023 BLACK FRIDAY 23 is coming

    BIG SALE, 35% discount for all our extensions. Use BF23 coupon code. Hurry up the discount is valid till 27 November.


2Checkout.com, Inc. is an authorized retailer of goods and services provided by ARI Soft. 2CheckOut




Follow us on twitter



Welcome, Guest
Please Login or Register.    Lost Password?

Same text format
(1 viewing) (1) Guest
Go to bottomPage: 1234
TOPIC: Same text format
#14455
Re:Same text format 13 Years ago Karma: 0
1. I'm not what you mean with playing with opacity parameter. My understanding form opacity is that with 2 layers, one is more or less shown as a background to the other. How would that translate back to not showing a certain area below the 5 images.

3. I found the example. And added the following CSS code into the module area:
DIV{$id}_wrapper DIV.ari-image-slider-wrapper .nivoSlider
{
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
}
But this doesn't remove the shadow. I guess I made a mistake somewhere?

4. See attached image within the red (partial) oval.
File Attachment:
File Name: Moving_grey_area.zip
File Size: 49694
Last Edit: 2011/05/07 08:08 By NogNeetMachinaal.
The administrator has disabled public write access.
 
#14471
Re:Same text format 13 Years ago Karma: 748
1. The extension doesn't work in this way. It requires custom modification.

3. You use incorrect CSS rule. Use the next:

Code:


DIV{$id}_wrapper .nivoSlider
{
 -moz-box-shadow: none;
 -webkit-box-shadow: none;
 box-shadow: none;
}



4. It is not problem with our extensions. This is Flash object. You can use FireBug addon for FireFox browser that see it and investigate the problem.

Regards,
ARI Soft
The administrator has disabled public write access.
 
#14505
Re:Same text format 13 Years ago Karma: 0
Indeed - I found (and solved) the problem with Firefox. Thanks for the tip.

1.: The CSS rules mentioned in message #14451 would put the text below the image.
What do I need to change to put the text above the image?

Thanks for all the help! I will put a nice review on the Joomla extension site.
Last Edit: 2011/05/08 11:53 By NogNeetMachinaal.
The administrator has disabled public write access.
 
#14508
Re:Same text format 13 Years ago Karma: 748
Use the next CSS rule:

Code:


DIV.nivo-caption
{
 top: 0;
 bottom: auto;
}



Regards,
ARI Soft
The administrator has disabled public write access.
 
#14512
Re:Same text format 13 Years ago Karma: 0
Assuming that this rule is for Image Slider:
That does indeed place the text above the image.

However, at times, the image overwrites the text.
This doesn't happen when using the carousel extension.
Is there a way to let the Image Slider extension behave the same?
The administrator has disabled public write access.
 
#14513
Re:Same text format 13 Years ago Karma: 748
You can try to use the next CSS rules:

Code:


DIV.nivo-slider {
 margin-top: 20px;
}

DIV.nivo-caption {
 top: -20px;
 bottom: auto;
}



PS: We can recommend to use FireBug addon for FireFox browser that investigate HTML page layout and styles, and change styles at runtime.

Regards,
ARI Soft
The administrator has disabled public write access.
 
Go to topPage: 1234