function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
moniquemonique 

VF page shows smaller in Winter 15

Hi,

When I open a VF-page in Winter 15, it shows smaller than it is in Summer 14. Any idea anyone?
Regards Monique
Sumitkumar_ShingaviSumitkumar_Shingavi
Are you at all playing with Standard SFDC Styles and over-rided them in your VF page?
moniquemonique
I am not sure, I didn't create this myself. It was created by a developer. Where can I see this?
moniquemonique
User-added image
moniquemonique
You see the big white piece of the screen.
Sumitkumar_ShingaviSumitkumar_Shingavi
Go to "App Setup->Develope->Pages" and then select "Polispagina" and see if it has got any "<Style>" tag there.

PS: if this answers your question then hit Like and mark it as solution!
moniquemonique
<apex:page controller="PolisController" id="polispagina" tabstyle="Account">
<apex:includeScript value="{!$Resource.functions}"/> 
  <apex:stylesheet value="{!$Resource.common}" />
<script type='text/javascript'>
    function noenter(ev)  {
        if (window.event && window.event.keyCode == 13 || ev.which == 13) {
            doSaveAndSend();
            return false;
         } else {
              return true;
         }
     }
moniquemonique
This is what I see? Hope this is enough?
Sumitkumar_ShingaviSumitkumar_Shingavi
Comment below line
<apex:stylesheet value="{!$Resource.common}" />
as
<!--<apex:stylesheet value="{!$Resource.common}" />-->
and refresh page to see if it works!

PS: if this answers your question then hit Like and mark it as solution!
U JayU Jay
Then wont miss other styles used by <apex:stylesheet value="{!$Resource.common}" /> ?
Sumitkumar_ShingaviSumitkumar_Shingavi
You will! You need to "inspect" that gap by using "inspectors" in your browser. Right click on page and you will see "Inspect Element" option then see styles and you can identify which style need to be modified. You might need to get this done from a dev quickly. But this is the only solution!

PS: if this answers your question then hit Like and mark it as solution!
moniquemonique
Hi Sumitkumar, I've made that change to the page and it works fine! But now I am confused what to do, considering your latest reply. How can I check this out? I don't see Inspect Element anywhere? I am no developer so please be patient with me ;)
Sumitkumar_ShingaviSumitkumar_Shingavi
I will say, if you don't see any impact then you are at no loss! Don't bother about that!

Mark right comment as answer and let me know if you need any help in future for something else.
moniquemonique
Thanks! In that case, I am very happy with your help! It works fine, so problem solved. Thank you very much.
Sumitkumar_ShingaviSumitkumar_Shingavi
Great, it helped! Mark solution please so that this question never comes back in queue for answers.
moniquemonique
Hi, I've pressed the Like button, but how can I mark it as solved? Or is this enough?
Sumitkumar_ShingaviSumitkumar_Shingavi
As you created this question, you should be able to mark any comment as answer to your question.