GhozyLab
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Zoom Lite] Images are full width in the editor.Hi @garybeck
Fixed on 1.0.0.55, please update
Forum: Themes and Templates
In reply to: [Zoom Lite] Suggestions for improving the translatabilityHi @elrighto
Fixed on 1.0.0.55, please update
Thank you very much for this information, we will try it from our side and will apply this on the next release.
Thank you very much ??
Forum: Themes and Templates
In reply to: [Zoom Lite] How to make a menu category that is not a page?Hi @garybeck
Please try to change your post permalink from WP Dashboard > Settings > Permalinks
Forum: Themes and Templates
In reply to: [Zoom Lite] Font customization?Hi @tina_d
Sorry, for now we are not provide the fonts options yet, maybe you can try to change the font via CSS or use the plugins. You can use this plugin that already tested on Zoom theme and it works perfectly :
NOTE: After instlled, you can go to theme Customizer > and find TK Google Fonts panel
- This reply was modified 7 years, 3 months ago by GhozyLab.
Forum: Themes and Templates
In reply to: [Zoom Lite] Featured image on featured postHi @canoehull
Yes you can, just follow this steps:
- Go to Theme Customize > Posts Settings > Post Images > change Image Size for Show Featured Image on blog List option to LARGE
- Go to Theme Customize > Miscellaneous > Additional CSS > and paste the following code :
.sticky .entry-header-cont { max-width: 100%; width: 100%; }
Forum: Themes and Templates
In reply to: [Zoom Lite] How to change height of header image?Hi @tina_d
You can follow the following tricks to display logo only :
- Go to WP customize > Site Styles > Header > and change back to Logo, Title & Tagline
- After that go to WP customize > Miscellaneous > Additional CSS > and paste the following code :
.site-identity { display: none; }
- This reply was modified 7 years, 3 months ago by GhozyLab.
Forum: Themes and Templates
In reply to: [Zoom Lite] drop-down menu “Zoom Lite”@@iiivasyaiii
Sorry for the delayed response, but now the menu is works as your mean.
Forum: Themes and Templates
In reply to: [Zoom Lite] Amazon Affiliate Images Being ResizedHi @jpschaper
You can go to theme customize > Miscellaneous > Additional CSS > and paste the following code :
.entry-content img { width: auto; }
Forum: Themes and Templates
In reply to: [Zoom Lite] Creating a Child ThemeWe do not encounter any problems like you from here. Can you give me a video that can explain your problem?
Forum: Themes and Templates
In reply to: [Zoom Lite] Creating a Child ThemeHi @splatcat1
Yes, correct…
Forum: Themes and Templates
In reply to: [Zoom Lite] Creating a Child ThemeHello,
No need to write any function in your child theme functions.php, also no need to wp_dequeue_style the main style.
Just add one styles.css and functions.php in your child theme folder.
You can download sample zoom child theme here : Download Sample ZOOM Lite Child
Forum: Themes and Templates
In reply to: [Zoom Lite] Customizing the image caption?You can go to Theme > Customize > Miscellaneous > Additional CSS > and paste the following code:
.gallery-item .wp-caption-text { padding-top: 10px; font-family: 'Josefin Sans'; font-weight: bold; font-style: normal; line-height: 1.2; font-size: 16px; color: #fff; }
Code above will make your gallery caption same with the site styles.
Forum: Themes and Templates
In reply to: [Zoom Lite] How to disable image animationForum: Themes and Templates
In reply to: [Zoom Lite] How to disable image animationHi @reyguide
Please go to Theme > Customize > Miscellaneous > Additional CSS > and paste the following code:
.zoom-blog-default .entry-header img.wp-post-image:hover { -moz-transform: none; -webkit-transform: none; transform: none; -webkit-filter: none; filter: none; }