Reputation: 362
Has anyone tried to customize this button? https://developer.linkedin.com/plugins/apply
Upvotes: 0
Views: 2355
Reputation: 697
You could wait for the window to completely load with jQuery, then apply your css overrides. You'd want to hide the button initially and then show it when the css overrides are applied. There might be a bit of a race condition that will show the button without your styling applied at first though.
something like:
$(document).ready(function() {
$(".IN-widget").hide();
});
$(window).load(function(){ // change LinkedIn's things you shouldn't change because their branding is important here $(".IN-widget").show(); });
Upvotes: 0
Reputation: 2241
Beyond the built-in customization options, please don't change the look-and-feel of this button. It's part of our "Brand".
Upvotes: 1
Reputation: 2706
The Apply With LinkedIn button does have some customizations available. See this page for more information: https://developer.linkedin.com/apply-visual-display-options
Upvotes: 0