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
Ron McCrereyRon McCrerey 

I am trying to use bootstrap with Visual Force, but the outcome is quite different than the same markup used outside of Visual Force. "panel" , "col-sm-3", "radio-inline" don't seem to work properly. Can anyone tell me what I might be doing incorrectly?

pconpcon
Can you please include the visualforce code you have as well as a screenshot of what it looks like rendered incorrectly?
Ron McCrerey 4Ron McCrerey 4
Thank you for the response.  I have solved the problem; I was not accessing the libraries, I found it was a problem in the include script.  Here is what I am now using that works:
   <apex:includeScript value="{!URLFOR($Resource.bootstrap, 'bootstrap/js/bootstrap.min.js')}"/>
   <apex:includeScript value="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.26/angular.min.js"/>
Don't have the original code that was causing the problem.