Branko
Forum Replies Created
-
Hi,
The theme will handle that for you. It will automatically add H1 tag for the post/page titles and WordPress by default will handle the
<title>
tag.Forum: Themes and Templates
In reply to: [Sinatra] Insertar icono de red social en footerHi,
The theme does not provide an icon for TikTok, but you can extend the theme to support it, since we have provided hooks for that. You can find the code that handles icons in
sinatra/inc/icon-functions.php
file.Forum: Themes and Templates
In reply to: [Sinatra] Child ThemeYes, you can find it here: https://github.com/zlateska/sinatra-child
Glad to hear that solved the problem ??
Forum: Themes and Templates
In reply to: [Sinatra] Formatting FooterGo to Appearance ? Customize ? Footer ? Main Footer and choose any of the two layouts with two columns.
Then, go to Appearance ? Widgets and in Footer 1 add Image block with your logo and in Footer 2 add your contact information (use List or Paragraph block).
Forum: Themes and Templates
In reply to: [Sinatra] Removing Lines from Main HeaderHi,
Top Border:
Go to: Appearance ? Customize ? Header ? Main Navigation ? Design Options ? Border ? Set 0px for “Top”
Bottom Border:
Go to Appearance ? Customize ? Header ? Main Header ? Design Options ? Border ? Set 0px for “Bottom”Alternative way (not recommended) is to use CSS to override the Customizer options:
.sinatra-header-layout-3 .si-nav-container { border: none; }
Forum: Themes and Templates
In reply to: [Sinatra] Social Media IconsHi @jentsang2104,
Just increase the height value,
font-size
will not work.For example:
.sinatra-social-nav > ul > li > a.si-icon { height: 24px; }
Forum: Themes and Templates
In reply to: [Sinatra] WooCommerce checkout page not resizing for mobile-viewI’m glad I could help ??
If you have a minute of your time, please leave a 5-star review for the Sinatra theme: https://www.ads-software.com/support/theme/sinatra/reviews/#new-post
Thanks!
Forum: Themes and Templates
In reply to: [Sinatra] WooCommerce checkout page not resizing for mobile-viewOh I’m sorry, the CSS I sent is for the Cart page not the Checkout.
You can try with this CSS:
.woocommerce .woocommerce-checkout-review-order table.shop_table thead th { white-space: nowrap } .woocommerce table.shop_table td.product-name { margin: 0 !important }
Let me know if that worked.
Forum: Themes and Templates
In reply to: [Sinatra] WooCommerce checkout page not resizing for mobile-viewForum: Themes and Templates
In reply to: [Sinatra] WooCommerce checkout page not resizing for mobile-viewHere’s a CSS code that will improve how the cart looks like on mobile devices:
@media screen and (max-width: 900px) { .woocommerce .woocommerce-cart-form table.shop_table td { border: none !important; padding: 8px 0 !important; } .woocommerce table.shop_table td:before { text-align: left; } .woocommerce table.shop_table td.product-name { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; text-align: left !important; margin-bottom: 24px; } .woocommerce .actions .coupon { display: flex; flex-direction: column; gap: 12px; } .woocommerce .actions .coupon input { margin: 0 !important; width: 100% !important; } }
Add the CSS into the Additional CSS field in Appearance ? Customize and let me know if that looks better.
If the updated cart looks good, I will include it with the next theme update.
- This reply was modified 3 years, 1 month ago by Branko.
Forum: Themes and Templates
In reply to: [Sinatra] Different appearance in View and in Customise/ EditHi @pangad,
It sounds like your website is cached and you are not seeing the updated version. Caching is typically done through a plugin but it is also possible that your hosting company does that for you.
The first thing you should try is to disable all of your plugins and see if that make any difference. You could also reach out to your hosting company and ask about the cache.
Forum: Themes and Templates
In reply to: [Sinatra] How to change order of elements in single post viewHey @noookeee,
Post Elements in Single Posts cannot be rearranged with drag & drop, like it is possible for the Blog page.
It is possible with CSS, however. Let me know how you would like to reorder the elements and I will try to provide the CSS code.
Forum: Themes and Templates
In reply to: [Sinatra] My sidebar does not load as intendedHi @jh07,
You can choose sidebar position in Appearance ? Customize ? Sidebar.
Forum: Themes and Templates
In reply to: [Sinatra] WooCommerce checkout page not resizing for mobile-viewHey,
You website has a “Coming Soon” page so I can’t actually see the website.