You need to sign in to do that
Don't have an account?
About adjusting css
Hi all! It's really general question about develop VF in SFDC platform.
Nowadays, I've worked with web designer and she is not familiar with SFDC.
In this situation, what we do together is, she write down font-end html/css/a little javascript code, and I take it and add Data integration work with SDFC.
The problem is,
I copy all code from html file she has done, and then paste to VF, of course, I need to adjust ref information with Static Resource.
But, many css occur problem like, align:center doesn't work background-color doesn't work something like that.
Is there any reason about it and easy solution?
Thanks in advance.
Nowadays, I've worked with web designer and she is not familiar with SFDC.
In this situation, what we do together is, she write down font-end html/css/a little javascript code, and I take it and add Data integration work with SDFC.
The problem is,
I copy all code from html file she has done, and then paste to VF, of course, I need to adjust ref information with Static Resource.
But, many css occur problem like, align:center doesn't work background-color doesn't work something like that.
Is there any reason about it and easy solution?
Thanks in advance.
Salesforce adds its own CSS on its pages. So, to use your own CSS, you will need to add following attributes into your <apex:page>.
<apex:page standardStylesheets = false showHeader = false sideBar = false>
Thanks.
All Answers
I cannot understand.
Salesforce adds its own CSS on its pages. So, to use your own CSS, you will need to add following attributes into your <apex:page>.
<apex:page standardStylesheets = false showHeader = false sideBar = false>
Thanks.
I resolved it!