Don't have an account?
Search for an answer or ask a question of the zone or Customer Support.
You need to sign in to do that
Sign in to start searching questions
Signup for a Developer Edition
Sign in to start a discussion
Hi
I want to display some links on extreme right at top of my vf page as images .
Can anybody tell me how to display links as any image.
thanks
Ritika
try like this
<apex:commandLink action="{!domy}" type="image/png"><apex:image value="{!$resource.oppicon}"/></apex:commandlink>
Thanks for the reply plz tell me , how can i move it to extreme right.
Try this. upload your image as static resource and name it as myResourceImage and In VF:
<apex:page>
<apex:commandlink action="{!youraction}" style="float:right;">
<apex:image id="theImage" value="{!$Resource.myResourceImage}" width="50" height="50"/>
</apex:commandlink>
</apex:page>
try this and let me know
regards,
Big V
simple add style to image as style="float:right;"
try like this
<apex:commandLink action="{!domy}" type="image/png">
<apex:image value="{!$resource.oppicon}"/>
</apex:commandlink>
Thanks for the reply plz tell me , how can i move it to extreme right.
Try this. upload your image as static resource and name it as myResourceImage and In VF:
<apex:page>
<apex:commandlink action="{!youraction}" style="float:right;">
<apex:image id="theImage" value="{!$Resource.myResourceImage}" width="50" height="50"/>
</apex:commandlink>
</apex:page>
try this and let me know
regards,
Big V
simple add style to image as style="float:right;"