I've just created a Visualforce page with an embedded flow. This is the code so far:
<apex:page controller="FlowController" standardStylesheets="True" showHeader="False" sidebar="False">
<apex:stylesheet value="{!URLFOR($Resource.Custom_Classes, 'customclasses/css/myfile.css')}"/>
<flow:interview name="Checker" interview="{!Checker}" finishLocation="{!finishcheck}">
<apex:param name="orgId" value="{!organizationid}"/>
</flow:interview>
</apex:page>
I'm now trying to add custom css classes as described in this link.
Since I'm new to the whole platform and even CSS in general, I'm not very sure how to override the predefined style classes for the elements listed in the link ( FlowContainer, FlowPageBlockBtns, FlowPreviousBtn, etc)
For example, if I want to add a custom style for the next/previous button how should I go about it?
Edit: I would also like to change the style of the entire page, just in case the process would be different.
Edit2: I have also tried the following after doing a little reading but it still does not seem to be working:
<apex:page controller="FlowController" standardStylesheets="True" showHeader="False" sidebar="False">
<style>
.FlowPageBlockBtns.FlowNextBtn{
color:red;
text-align:center;
}
</style>
<flow:interview name="Checker" interview="{!Checker}" finishLocation="{!finishcheck}">
<apex:param name="orgId" value="{!organizationid}"/>
</flow:interview>
</apex:page>