Styling the Connect Button
By default, the connect button only shows a (+) sign. You can customize it further by adding the following CSS to the main page:
#ProtobjectPlusButton {
width: 80px !important;
}
#ProtobjectPlusButton:after {
content: ' Connect';
}
Feel free to experiment and add your own styling.
Tips for Customizing the Connect Button
When customizing the connect button, consider the following:
-
Change the Button Size:
Adjust the button’s width and height to fit the icon properly. Use CSS properties likewidth
andheight
to control the button’s dimensions. If needed, use!important
to ensure the styles are applied when the CSS is inline. -
Add an Icon Using Background:
You can add an icon by setting abackground-image
on the button. Ensure the icon fits well by usingbackground-size: contain
orcover
. -
Make Text Transparent:
If you are adding an icon via thebackground-image
property, make the text transparent usingcolor: transparent
or remove the text entirely, as the default “+” sign may conflict with the icon. -
Adjust Icon Positioning:
Usebackground-position
to control where the icon is positioned within the button. Common values includecenter
,top
, orleft
, depending on where you want the icon to appear. -
Icon Size:
Usebackground-size
to scale the icon. You can set it tocontain
(to maintain aspect ratio) or a specific pixel size to better fit your design. -
Styling Button’s Appearance:
You can change the background of the button (e.g., gradient, color, etc.), applyborder-radius
for rounded corners, adjust padding for spacing, and modify text styles for further customization. -
Use
!important
When Needed:
You may need to use!important
to override default styles and ensure your custom styles are applied correctly.