I created a spin button in GTK+ like this:
flow_spin = gtk_spin_button_new_with_range (100,1500,25);
and I want to change it\'s font and size.
Gtk supports CSS for styling. You can load a CSS file in your program with gtk_css_provider_load_from_file().
So, just add a style provider on GtkWidget you want to stylish.
It's good read: