and set autoplay: true few rows above in swiper options
you need to hard referesh the page (Ctrl+F5) to see the changes.
However: I have not tested the changes and autoplay may raise some problems with syncing all the elements in the page that's why we do not recommend it.
Although we do not recommend changing the fonts (because you may need to do a lot of collateral changes - margins, paddings etc) you can use plugin such Easy Google Fonts
Also, the last Bauman theme update said it "updated fontawesome to 4.7.0," is that internal or is that the plugin you recommend for font selection over Easy Google Font?
1. How can I adjust the portfolio showcase (http://clapat.ro/themes/bauman-wordpress/) so that the Headline appears above the Subhead?
2. How can I adjust the portfolio showcase so that it auto-advances?
Thanks
Hi Jen
open /js/scripts.js and go to function Showcase() and on line 1180 switch
'<div class="subtitle">' + subtitle[index] + '</div>' + '<div class="title">' + titles[index] + '</div>'
to
'<div class="title">' + titles[index] + '</div>' + '<div class="subtitle">' + subtitle[index] + '</div>'
and set autoplay: true few rows above in swiper options
you need to hard referesh the page (Ctrl+F5) to see the changes.
However: I have not tested the changes and autoplay may raise some problems with syncing all the elements in the page that's why we do not recommend it.
Thank you.
Clapat Support
https://www.clapat.com/
Review Envato Item Support Policy
Lovely. Thank you. Switched the header and subhead and am leaving auto-play alone.
Since I switched the header and subhead, now the header hover underline runs into the subhead. Any suggestions on how to adjust spacing there?
Also how does one set typography?
Thanks
Hi Jen,
what is the site url so I can inspect it.
Although we do not recommend changing the fonts (because you may need to do a lot of collateral changes - margins, paddings etc) you can use plugin such Easy Google Fonts
https://wordpress.org/plugins/easy-google-fonts/
or
https://wordpress.org/plugins/use-any-font/
or for custom fonts
How can I add my own custom icons/fonts to the theme?
Thank you.
Clapat Support
https://www.clapat.com/
Review Envato Item Support Policy
Hi Jen,
try for example
.subtitle {
margin-top: 15px;
}
you can try different values for top margin in customizer -> additional CSS
Thank you.
Clapat Support
https://www.clapat.com/
Review Envato Item Support Policy
Similar question in regards to the portfolio detail page, how can I display the headline above the subhead?
Thanks
Hi Jen
You could try opening /sections/hero_section_container.php and swap the title with subtitle. So instead of
<div class="inner">
<div class="hero-subtitle"><?php echo wp_kses_post( $bauman_hero_properties->caption_subtitle ); ?></div>
<div class="hero-title"><?php echo wp_kses_post( $bauman_hero_properties->caption_title ); ?></div>
</div>
change it to
<div class="inner">
<div class="hero-title"><?php echo wp_kses_post( $bauman_hero_properties->caption_title ); ?></div>
<div class="hero-subtitle"><?php echo wp_kses_post( $bauman_hero_properties->caption_subtitle ); ?></div>
</div>
Thank you.
Clapat Support
https://www.clapat.com/
Review Envato Item Support Policy
Lovely. Thank you.
Also, the last Bauman theme update said it "updated fontawesome to 4.7.0," is that internal or is that the plugin you recommend for font selection over Easy Google Font?
Hi Jen, it's internal, it just brings the fontawesome library to a newer version.
Thank you.
Clapat Support
https://www.clapat.com/
Review Envato Item Support Policy