Sorry that you are having problems. As your question has to do with how the theme is written, and no link is provided to see the behavior, it would be best to contact the Fludia support for this one.
https://ww.wp.xz.cn/themes/fluida/
or
https://www.cryoutcreations.eu/wordpress-themes/fluida
You “might” be able to override the inline with “!important” on your styles…
(see https://css-tricks.com/override-inline-styles-with-css/)
but I do think it would be best if you can make the change with the theme.
I thought about !important, but it will slow the loading of the CSS and will look unprofessional.
The child-theme is like this:
fluida-child (folder)
- style.css (file)
/*
Theme Name: Fluida Child
Theme URI: http://example.com/fluida/
Description: Fluida Child Theme
Author: Ido Monzon
Author URI: http://example.com
Template: fluida
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fluida
*/
/* CSS code here */
- functions.php (file)
<?php
function my_theme_enqueue_styles() {
$parent_style = 'fluida-style';
wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'child-style',
get_stylesheet_directory_uri() . '/style.css',
array( $parent_style ),
wp_get_theme()->get('Version')
);
}
add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' );
-
This reply was modified 8 years, 5 months ago by
idomonzon.