Submit
Path:
~
/
home
/
getwphos
/
public_html
/
ccma
/
wp-content
/
themes
/
curly
/
framework
/
modules
/
error404
/
custom-styles
/
File Content:
custom-styles.php
<?php if (!function_exists('curly_mkdf_404_header_general_styles')) { /** * Generates general custom styles for 404 header area */ function curly_mkdf_404_header_general_styles() { $background_color = curly_mkdf_options()->getOptionValue('404_menu_area_background_color_header'); $background_transparency = curly_mkdf_options()->getOptionValue('404_menu_area_background_transparency_header'); $header_styles = array(); $menu_selector = array( '.error404 .mkdf-page-header .mkdf-menu-area' ); if (!empty($background_color)) { $header_styles['background-color'] = $background_color; $header_styles['background-transparency'] = 1; if ($background_transparency !== '') { $header_styles['background-transparency'] = $background_transparency; } echo curly_mkdf_dynamic_css($menu_selector, array('background-color' => curly_mkdf_rgba_color($header_styles['background-color'], $header_styles['background-transparency']) . ' !important')); } if (empty($background_color) && $background_transparency !== '') { $header_styles['background-color'] = '#fff'; $header_styles['background-transparency'] = $background_transparency; echo curly_mkdf_dynamic_css($menu_selector, array('background-color' => curly_mkdf_rgba_color($header_styles['background-color'], $header_styles['background-transparency']) . ' !important')); } $border_color = curly_mkdf_options()->getOptionValue('404_menu_area_border_color_header'); $menu_styles = array(); if (!empty($border_color)) { $menu_styles['border-color'] = $border_color; } echo curly_mkdf_dynamic_css($menu_selector, $menu_styles); } add_action('curly_mkdf_style_dynamic', 'curly_mkdf_404_header_general_styles'); } if (!function_exists('curly_mkdf_404_page_general_styles')) { /** * Generates general custom styles for 404 page */ function curly_mkdf_404_page_general_styles() { $background_color = curly_mkdf_options()->getOptionValue('404_page_background_color'); $background_image = curly_mkdf_options()->getOptionValue('404_page_background_image'); $pattern_background_image = curly_mkdf_options()->getOptionValue('404_page_background_pattern_image'); $item_styles = array(); if (!empty($background_color)) { $item_styles['background-color'] = $background_color; } if (!empty($background_image)) { $item_styles['background-image'] = 'url(' . $background_image . ')'; $item_styles['background-position'] = 'center 0'; $item_styles['background-size'] = 'cover'; $item_styles['background-repeat'] = 'no-repeat'; } if (!empty($pattern_background_image)) { $item_styles['background-image'] = 'url(' . $pattern_background_image . ')'; $item_styles['background-position'] = '0 0'; $item_styles['background-repeat'] = 'repeat'; } $item_selector = array( '.error404 .mkdf-content' ); echo curly_mkdf_dynamic_css($item_selector, $item_styles); } add_action('curly_mkdf_style_dynamic', 'curly_mkdf_404_page_general_styles'); } if (!function_exists('curly_mkdf_404_title_styles')) { /** * Generates styles for 404 page title */ function curly_mkdf_404_title_styles() { $item_styles = curly_mkdf_get_typography_styles('404_title'); $item_selector = array( '.error404 .mkdf-page-not-found .mkdf-404-title' ); echo curly_mkdf_dynamic_css($item_selector, $item_styles); } add_action('curly_mkdf_style_dynamic', 'curly_mkdf_404_title_styles'); } if (!function_exists('curly_mkdf_404_subtitle_styles')) { /** * Generates styles for 404 page subtitle */ function curly_mkdf_404_subtitle_styles() { $item_styles = curly_mkdf_get_typography_styles('404_subtitle'); $item_selector = array( '.error404 .mkdf-page-not-found .mkdf-404-subtitle' ); echo curly_mkdf_dynamic_css($item_selector, $item_styles); } add_action('curly_mkdf_style_dynamic', 'curly_mkdf_404_subtitle_styles'); } if (!function_exists('curly_mkdf_404_text_styles')) { /** * Generates styles for 404 page text */ function curly_mkdf_404_text_styles() { $item_styles = curly_mkdf_get_typography_styles('404_text'); $item_selector = array( '.error404 .mkdf-page-not-found .mkdf-404-text' ); echo curly_mkdf_dynamic_css($item_selector, $item_styles); } add_action('curly_mkdf_style_dynamic', 'curly_mkdf_404_text_styles'); }
Edit
Rename
Chmod
Delete
FILE
FOLDER
Name
Size
Permission
Action
custom-styles.php
4852 bytes
0644
N4ST4R_ID | Naxtarrr