Hello
Is the a way to replace the caption title text with an image on the fullpage slider. My clients want to have their logo in that place instead of text. The result need to respond correctly too.
Thanks Much
Hi rdswestnet!
Could you provide us with a link to the site in question so that we can take a closer look please?
Regards,
Rikard
Hey Rikard
Here’s the link: http://www.sakuraseafoods.com/
On the fullwidth slider I’d like to replace the caption title “sakura seafoods” with an image of the company logo
Thanks much, I appreciate the help.
Rob
Hey!
You can insert your logo using HTML IMG tag in captions – http://www.w3schools.com/tags/tag_img.asp
Cheers!
Yigit
Thanks for that.
Can you help me put a border around the image to match the button below?
I put this html in caption: <span id=”caption-title”></span>
and this css in Quick CSS:
#caption-title {
padding:0 !important;
margin:0 !important;
height:175px !important;
width:326px !important;
border: 3px solid white;
-webkit-border-radius: 4px !important;
-moz-border-radius: 4px !important;
border-radius: 4px !important;
}
but I get the sad result you see at http://www.rbdevelopmentserver.com/sakuraseafoods/
How can I fix that? Thanks, Rob
here’s the html
<!–<span id=”caption-title”></span>–>
here’s the html
<!––>
Hey!
Try applying the CSS to the image instead, like this:
#caption-title img {
padding: 0 !important;
margin: 0 !important;
height: 175px !important;
width: 326px !important;
border: 3px solid white;
-webkit-border-radius: 4px !important;
-moz-border-radius: 4px !important;
border-radius: 4px !important;
}
Regards,
Rikard
Thanks for all the help. This is resolved.