Where can I style the VC-element called “Text With Title”?
And what are actually the default font settings, that are mentioned in the admin everywhere?
-
This topic was modified 10 years by
argosmedia.
But you know what – you make a good point!
Admin folk: would be useful to actually explain WHAT the default fonts are in the theme docs on the font section, such as Open Sans and Roboto, or whatever, perhaps even identify which is used where, so folks are better aware of what is being used as “default” ?
I second that! I am having such a hard time trying to find out which module corresponds to which grid… I’m using Firebug, but it just seems like an unnecessary step in the process for a theme that is otherwise so feature-rich.
Big question right now is this – where do I change the font settings for the “text with title” VC block? Can’t find it anywhere.
Hi,
If you want to see which module corresponds to which block, then check this list: http://screencast.com/t/KnqUHogWg
As for the fonts, the title is affected by the general widget titles font: http://screencast.com/t/r2ugALnSo62X and the content of the text box is affected by the body general font: http://screencast.com/t/x7yH8CjXrvZc
If you want to target this element separately you can only do it with css like so:
.td_block_text_with_title, .td_block_text_with_title p{
font-family:arial!important;
}
Thank you!