• Resolved Ralph

    (@ralphsamuel)


    Dear Carousel Ultimate,

    Thank you for this great plugin, it is working very well for me and looks great on my site, there is just one modification I can’t seem to figure out.

    Would it be possible to change the font style of the post titles displayed under the carousel posts? I was already able to modify the shape, borders, colors and such in the shortcode php file, but I did not find a solution for changing the font style.

    Would really appreciate your suggestions!

    Kind regards,
    Ralph

Viewing 1 replies (of 1 total)
  • Plugin Author themepoints

    (@themepoints)

    Hi,
    Thanks for contact with us . if you want to change your carousel post title font style you must enqueue google font’s into plugin main file . see below example function . just enqueue this scripts into your plugins main file and called the fonts name in css.
    https://www.wpbeginner.com/wp-themes/how-add-google-web-fonts-wordpress-themes/

    function tp_ultimate_add_google_fonts() {
    
    wp_enqueue_style( 'example-google-fonts1', 'https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,400,700,300', false );
    wp_enqueue_style( 'example-google-fonts2', 'https://fonts.googleapis.com/css?family=Tangerine', false ); 
    }
    
    add_action( 'wp_enqueue_scripts', 'tp_ultimate_add_google_fonts' );

    If you need more information don’t hesitate to contact with us also for our inspiration don’t forget to give us a five star rating .

    Thanks

Viewing 1 replies (of 1 total)
  • The topic ‘How to make font style changes?’ is closed to new replies.