Hi I am trying to change the size and face of the tag_levels on my plots but whenever I run the code below for two plots:
prod_combined_plot <- (production_plot | kelp.treatment) +
plot_annotation(tag_levels = 'A') +
theme(plot.tag = element_text(face = "bold", size = 18));prod_combined_plot
Only the second letter (B) changes size and becomes bold while A stays the same. Both plots are made the same way and have the same dimensions.
