- Posts: 1
- Thank you received: 0
Custom images ?
15 years 1 month ago #7105
by taariq
Custom images ? was created by taariq
Good day
I have a 4 images scroller - How can I add a custom images for each images instead of the 1,2,3,4 ?
And how can I remove the black line across the top of the images?
Thank you
I have a 4 images scroller - How can I add a custom images for each images instead of the 1,2,3,4 ?
And how can I remove the black line across the top of the images?
Thank you
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Offline
- Moderator
-
Less
More
- Posts: 14116
- Thank you received: 1639
15 years 1 month ago #7116
by ivan.milic
Replied by ivan.milic on topic Re: Custom images ?
To turn off blask line set "Image Description" to off.
For custom images you ban use id of that elements(<a> tag) to access their style:
#slide-link-0
#slide-link-1
#slide-link-3
...
#slide-link-8
Set background image to point to your image for each of them is css:
#slide-link-0
{
background-image:url(...);
}
You can also use important css flag if needed to get higher priority for property:
background-image:url(...)!important;
For custom images you ban use id of that elements(<a> tag) to access their style:
#slide-link-0
#slide-link-1
#slide-link-3
...
#slide-link-8
Set background image to point to your image for each of them is css:
#slide-link-0
{
background-image:url(...);
}
You can also use important css flag if needed to get higher priority for property:
background-image:url(...)!important;
Please Log in to join the conversation.
Time to create page: 0.140 seconds