I have an image in my theme that displays icons on the website. Its a sprite image. I want to edit this image. I went to Edit Theme > Theme Actions > Edit Code > Assets > image.jpg. I can see it but I don't have any option to edit or replace it. Is this possible to do?
Related
I need help to add customized icon to the header of Shopify Store - Narrative theme.
https://butterflight-boutique.myshopify.com/
If no option available in theme settings then do below
Note: You should have HTML code idea.
From your Shopify admin, go to Online Store > Themes.
Find the theme you want to edit, and then click Actions > Edit code
Goto templates section and find Header template you can update there.
If the header is custom then to the main layout find which header is working and update that as per need.
I creating a custom theme on odoo (v14) and I would like to add/change/update the thumbnail image for this theme on Pic a Theme page. Where should I edit and add an image?
In order to add a thumbnail image for the theme you are creating, you just need to indicate the directory of that image on __manifest__.py file.
'images': [
'static/description/screenshot.jpg',
],
I am developing in shopify and want to add the background image below but can't find the url link for it. I know you can find it in Settings -> Files. But I need the actual picture url online to then upload it.
This section is being controlled from theme customization.
Go into customize theme, sections and there you will see option to change backgroud image.
Based on answers to this question, I've added BOTH checkout.scss.liquid (for responsive checkout, which is what I am using) and checkout.css.liquid (when scss one failed to do anything) to Assets. According to the answers I found, Shopify will search for these filenames and include them on the checkout pages. This doesn't work for me.
One of these answers also included a screenshot of the Checkout settings page (Settings > Checkout > Customize checkout). The screenshot shows a lot more options than what I see. All I see are:
1) "Use a logo" drop down
2) Tagline
3) Order Summary and Text Entry Fields - Background
4) Colors - Accent
For example, the screenshot shows 3 options under Colors - Accent, Buttons, Call to Action. (would be nice to be able to change the button color without trying to get the css file to work)
You can't use custom CSS for the checkout unless you're in the Shopify Plus plan. More details at: https://help.shopify.com/themes/development/templates/checkout-scss-liquid
In all other plans you just able to use the options you see in your theme customizer (like you already named).
I'm new to wordpress.. I have created a custom theme with files of twenty eleven theme in wordpress. But I'm not able to add custom background option and custom logo option. I'm trying to implement it in theme options page. I want to add a custom background color to a div in header section and also a logo in header.
Please give any suggestions for me to complete this theme creation.
Please give some idea about how to add new fields in theme options page and how to display it in pages..
I also want to add some custom text field for displaying address or some lines of text which can be updated from theme options.
Thanks in advance.
try wp codex (https://codex.wordpress.org/Theme_Customization_API), it'll help you with setting up the default wp customizer.
I personally use both the default customiser and the OptionTree plugin (http://wordpress.org/extend/plugins/option-tree/), the plugin is really easy to implement, I'd suggest you start with that.