| Server IP : 198.54.126.161 / Your IP : 216.73.216.14 Web Server : LiteSpeed System : Linux premium12.web-hosting.com 4.18.0-553.94.1.lve.el8.x86_64 #1 SMP Thu Jan 22 12:37:22 UTC 2026 x86_64 User : amerfigf ( 898) PHP Version : 8.2.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/amerfigf/public_html/wp-content/themes/Avada/includes/options/ |
Upload File : |
<?php
/**
* Avada Options.
*
* @author ThemeFusion
* @copyright (c) Copyright by ThemeFusion
* @link https://theme-fusion.com
* @package Avada
* @subpackage Core
* @since 4.0.0
*/
// Do not allow directly accessing this file.
if ( ! defined( 'ABSPATH' ) ) {
exit( 'Direct script access denied.' );
}
/**
* Custom CSS settings
*
* @param array $sections An array of our sections.
* @return array
*/
function avada_options_section_custom_css( $sections ) {
$sections['custom_css'] = [
'label' => esc_html__( 'Custom CSS', 'Avada' ),
'id' => 'custom_css_section',
'priority' => 27,
'icon' => 'el-icon-css',
'alt_icon' => 'fusiona-code',
'fields' => [
'custom_css' => [
'label' => esc_html__( 'CSS Code', 'Avada' ),
/* translators: <code>!important</code> */
'description' => sprintf( esc_html__( 'Enter your CSS code in the field below. Do not include any tags or HTML in the field. Custom CSS entered here will override the theme CSS. In some cases, the %s tag may be needed. Don\'t URL encode image or svg paths. Contents of this field will be auto encoded.', 'Avada' ), '<code>!important</code>' ),
'id' => 'custom_css',
'default' => '',
'type' => 'code',
'choices' => [
'language' => 'css',
'height' => 450,
'theme' => 'chrome',
'minLines' => 40,
'maxLines' => 50,
],
],
],
];
return $sections;
}