
Here is my setup:
- Service Console
- Email-to-Case setup
- Visualforce page overriding default case page layout.
So here is the problem I am trying to resolve:
When I override the default case page with my visualforce page, on the tab I am loading the case feed on, the icons for the quick links are quite small.
When I set the page view back to the default, the icons on the case feed page for the Quick links are much bigger.
Here is the difference that I see:
Icons w/ Visualforce Page Active
Icons with Default Case Page View Active
How can I keep the icons the same, the same meaning the Default Case Page View when I have the Visualforce page active.
I am also including my vf code from my page which shows how I am loading the Case Feed Page in my visualforce tab.
<apex:tab label="Emails" name="Emails" id="tabEm" style="background-color:white;">
<apex:page standardController="Case"
extensions="CasePageSelectorExtension" showHeader="false" sidebar="false">
<div style="width:1024px;font-size:10pt;font-family:verdana;">
<apex:dynamicComponent componentValue="{!casePage}"/>
</div>
</apex:page>
</apex:tab>
Any assistance would be appreciated as I want to get this deployed and it is my only blocker at this point.
1 resposta
@Milne : My first guess is that the CSS code in your VF page might be overriding the standard styling of icons . So Use Inspect Element feature of browser and find the CSS class of the icons . Then in your code ,you can use inline CSS to again override it . Something like this Styleclass = "height : 30pt !important"
Also Please post this question in developer forums such as http://developers.salesforce.com (http://developers.salesforce.com ) or http://salesforce.stackexchange.com/ (http:// http://salesforce.stackexchange.com/ ) so that you will get a faster response . This community is more geared towards Conditional approaches . Please mark the best answer , to keep the community clean . Cheers !!!