Forum Replies Created
-
AuthorPosts
-
Hi,
To can upload the theme on your server is need increase Maximum File Upload Size:
here is a good article about how to do that:
Hi,
You can not remove the category named “Uncategorize” this is standard WordPress feature.
Hi,
Our theme and plugin Work toghether with Gutenberg editor. The problem can be from another plugin.
Hi,
You can use default WordPress feature.
Go to your Admin Dashboard › Appearance › Customize › Additional CSS
Here you can add you custom css and preview live changes.
Hi,
1.
If you use WordPress 5
Is need to add a gallery block2.
If you use WordPress 4
Is need to click on button add media and create a gallery from existing images or by uploading new images.Hi,
Yes Gardener theme is php 7.2 compatible.
Hi,
Cronus is a child theme of Tempo WordPress Theme and from this reason is not possible to create a child theme for Cronus.
Hi,
I’m sorry for this confusion.
The custom css code below is to customize the menu items with bold weight.
header.tempo-header div.tempo-topper div.tempo-navigation-wrapper div.tempo-menu-wrapper ul.tempo-menu-list>li a{ font-weight: bolder !important; font-style: normal !important; }
The custom css code below is to customize the color for footer links:
aside.tempo-footer.light-sidebars div.widget.widget_pages ul li a, aside.tempo-footer.light-sidebars div.widget.widget_nav_menu ul li a{ color: orange; }
Hi MrBill,
I checked the case above and I can say the font weight property work good on my demo. I want specify the font weight on the buttons is less visible. To be more visible please try increase font size and line height.
Also from Admin Dasshboard › Appearance › Customize › Header Elements – First Button and Second Button you can change appearances for Header Buttons ( Color, Transparency, hover Effect Color ).
With Cronus + Zeon and Easy Google Fonts plugin you can create custom font controls for your website.
Step by step:
- Go to Easy Google Fonts Settings ( see the screenshot ):
- Add the first custom control by fill the Control Name for eg: Header Button 1
- Click the button Create Font Control
- Add the Control Selector ( css selector ) (see the screenshot ):
Easy Google Font Custom Control / Header Button 1This is the selector for your Header Button 1:
header.tempo-header div.tempo-header-partial .tempo-header-buttons .tempo-btn.btn-1
- Click the button Save Font Control
- Click the link create a new font control
- Add second custom control by fill the Control Name for eg: Header Button 2
- Click the button Create Font Control
- Add the Control Selector ( css selector ) (see the screenshot ):
Easy Google Font Custom Control / Header Button 2
This is the selector for your Header Button 2:
header.tempo-header div.tempo-header-partial .tempo-header-buttons .tempo-btn.btn-2
- Click the button Save Font Control
- Go to Admin Dashboard › Appearance › Customize › Typography › Theme Typography:
Here are your Header Buttons Custom Font Controls ( see the screenshot ):
Easy Foogle Font / Use Custom Controls
With these 2 controls now you can customize your buttons fonts appearance.
Hi,
Please, contact us trough our contact form ( I need details like website url to debug ).
I will explain you how create a custom option with Easy Google Fonts.Hi Bill,
You can try next custom css:
header.tempo-header div.tempo-header-partial.tempo-portfolio h1.tempo-headline{ display: none; } header.tempo-header div.tempo-header-partial.tempo-portfolio nav.tempo-navigation{ display: none; }
Hi,
Recommended size:
width: 533 px
height: 66 pxwith css from example above you can increase the max height to 110 px.
Hi Bill,
You can use custom header for each page.
To use custom header go to Edit Page and on the box Custom Header change the value of the Header Template from Default to Portfolio. After this add a Featured Image for this page and the image will be used as header image ( menu everlay the header image ).
Hi Bill,
I send you a solution for your problem through our Ticket system:
In your case:
you can use the gallery as a solution to publish images in 3 columns but below I done a custom css for you.
So, the custom css enlarge your home page content to 1450px and put 3 images in a row.
to use custom css put the code below to your Admin Dashboard > Appearance > Customize > Custom CSS:
body.home.page-template-default.page div#tempo-page .container img{ max-width: calc( 33.33333333% - 20px ); max-width: -webkit-calc( 33.33333333% - 20px ); max-width: -moz-calc( 33.33333333% - 20px ); float: left; margin: 0px 10px 30px 10px !important; } @media (max-width: 991px ){ body.home.page-template-default.page div#tempo-page .container img{ max-width: calc( 50% - 20px ); max-width: -webkit-calc( 50% - 20px ); max-width: -moz-calc( 50% - 20px ); float: left; margin: 0px 10px 30px 10px !important; } } @media (max-width: 540px ){ body.home.page-template-default.page div#tempo-page .container img{ max-width: 100%; float: none; margin: 0px auto 30px auto !important; } } @media (min-width: 1200px){ body.home.page-template-default.page div#tempo-page .container { width: 1450px; max-width: 100%; } }
-
AuthorPosts