arhakim
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Talon] Add a full-width header image to pagesHi,
Can you please to re-upload the image? It’s broken and not displayed.
Forum: Themes and Templates
In reply to: [Airi] Logo too bigAh… you change the logo image.
Okay, now can you remove the custom code I mentioned in above? I think it’s working with your new uploaded logo and without the custom code.Forum: Themes and Templates
In reply to: [Airi] Logo too bigHi,
Please try to add this to fix the issue:
.site-header { padding: 15px 0; height: 135px; } .sticky-wrapper { min-height: 90px !important; height: 135px !important; }You can add this code to Customize > additional CSS.
Forum: Themes and Templates
In reply to: [Sydney] How to activate Top Information?Hi @muzimak,
The widget you mentioned is only available for PRO version of the theme.
Forum: Themes and Templates
In reply to: [Sydney] Can I change the link hover color?Hi,
Here you go. You can use this CSS code to change the colour when the link hovered:
.entry-content a:hover { color: grey; }Regards,
Forum: Themes and Templates
In reply to: [Sydney] Testimonials Widget Not Showing ImageHi,
Looks like you put the testimonial content within the
blockquotetag which is mean theblockquotetag has black colour as default from the theme.You can use this CSS code below to change the background colour:
blockquote { background-color: grey !important; }Put the code into Customize > Additional CSS.
Best Regards,
Forum: Themes and Templates
In reply to: [Moesia] Header heightHi,
Here is the CSS code to change the height of the header area (the image):
.has-banner, .has-banner::after { max-height: 700px; }You can put the code into Customize > Additional CSS.
Forum: Themes and Templates
In reply to: [Astrid] Remove sidebar from shopHi there,
Please try this CSS code below. You can add the code in Customize > Additional CSS.
.woocommerce #primary { width: 100%; } .woocommerce #secondary { display: none; }