# floating-button/6.0.13/includes/settings/4.style.php

Floating Button – Easily Create Sticky, Fixed &amp; Floating Buttons, version 6.0.13. 65 lines.

- Page: https://pluginprobe.com/plugins/floating-button/6.0.13/code/includes/settings/4.style.php
- Raw: https://pluginprobe.com/plugins/floating-button/6.0.13/raw/includes/settings/4.style.php
- Modified: 2025-08-04T09:41:24+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/floating-button/6.0.13/code/includes/settings/4.style.php#L10-L20`.

```php
<?php
/*
 * Page Name: Style
 */

use FloatingButton\Dashboard\Option;

defined( 'ABSPATH' ) || exit;

$styleOpt = include( 'options/style.php' );
?>

<h4>
    <span class="wowp-icon fas fa-brush"></span>
	<?php esc_html_e( 'Style', 'floating-button' ); ?>
</h4>

<fieldset class="wowp-item">
    <legend><?php esc_html_e( 'General', 'floating-button' ); ?></legend>
    <div class="wowp-fields-group">
		<?php Option::init( [
			$styleOpt['shape'],
			$styleOpt['shadow'],
			$styleOpt['sub_btn_animation'],
		] ); ?>
    </div>
</fieldset>

<fieldset class="wowp-item">
    <legend><?php esc_html_e( 'Position', 'floating-button' ); ?></legend>

    <div class="wowp-fields-group">
		<?php Option::init( [
			$styleOpt['position'],
		] ); ?>
    </div>

</fieldset>


<fieldset class="wowp-item">
    <legend><?php esc_html_e( 'Button Size', 'floating-button' ); ?></legend>
    <div class="wowp-fields-group">
		<?php Option::init( [
			$styleOpt['size'],
		] ); ?>
    </div>
</fieldset>


<fieldset class="wowp-item">
    <legend><?php esc_html_e( 'Tooltip', 'floating-button' ); ?></legend>
    <div class="wowp-fields-group">
		<?php Option::init( [
			$styleOpt['tooltip_size_check'],
		] ); ?>
    </div>
    <div class="wowp-fields-group">
		<?php Option::init( [
			$styleOpt['tooltip_bg'],
			$styleOpt['tooltip_color'],
		] ); ?>
    </div>
</fieldset>

```
