Khung Long
Forum Replies Created
-
Hey @kmoertl
Did you resolve?Forum: Themes and Templates
In reply to: [Spacious] Slider on top home page not working v 1.5.7Hey @arlinaite
Did you resolve?
I checked your site and found Google Fonts cann’t load, it will affect your site speed.
Check your header.php (Appearance > Editor > header.php) and fix Google Font’s Link.
<link rel=’stylesheet’ id=’google_fonts-css’ href=’//fonts.googleapis.com/css’ type=’text/css’ media=’all’ />It may be due to a number of reasons:
- Your Google Ads code has problem.
- Insert Headers and Footers conflict with other plugins
Try deactivate all plugins (Go to hosting > rename wp-content/plugins. It will deactivate all). Then activate Insert Headers and Footers again. If it works well, continue to enable other plugins to determine the problem
Hi @taswir
I like inserting Adsense Code into Script in Footer. It will good for performance ??Work well. I use WP 5.0.2
Forum: Themes and Templates
In reply to: [Twenty Eleven] adjusting font size in header and page titlesHi @zeromost
You can use CSS. Inset it into Appearance > Customize > Additional CSS (or Custom CSS).
Remember change font size to what you want.
XXX is ID of Page/* Header Title Font Size */ #site-title a { font-size: 30px; } /* Page Title */ .page-id-xxx .entry-title { font-size: 20px; }
Forum: Themes and Templates
In reply to: [Neve] Child Theme Not WorkingTry Child Theme Configurator Plugin to create Child Theme ??
Forum: Themes and Templates
In reply to: [Twenty Nineteen] Grid Header & FooterInsert this CSS into Appearance > Customize > Additional CSS (or Custom CSS), then clear cache ??
.page-id-xxx #masthead, .page-id-xxx footer#colophon { display: none; }
with xxx is id of Page.
- This reply was modified 6 years, 1 month ago by Khung Long. Reason: add code tag
Forum: Themes and Templates
In reply to: [Twenty Nineteen] Removing small line above title (H1, H2..)Try this CSS. I’ll work ??
.entry-title:before { opacity: 0; }
- This reply was modified 6 years, 1 month ago by Khung Long.