Big commerce (modifying template theme - bigcommerce

I am new to Big Commerce. I am trying to modify the my CSS for the current theme. I am unable to find the location of the files. I am trying to make modifications to my product titles like removing the text-decorations and changing font-size. Any help is greatly appreciated.

You can modify the theme styles using the Bigcommerce theme files editor at Storefront->My Themes->Current Theme->Advanced->Edit Theme Files.
Theme scss should be at assets->scss->theme.scss.

Related

How to add website content translations into Odoo custom theme?

I have developed custom Odoo(v14) theme. I use this theme for our company website and it is multilingual. Normally I add the translations of the content from Odoo interface but I was wondering if there is a way that I can include them too into my theme. So I can control everything in it. Do you know how I can do it?
You can easily use this link to do that.
Translating Modules or themes Odoo 14

How to overwrite the theme in shopify

Can any one help me on how to overwrite the theme in Shopify. Is there any option to create custom child theme under main theme and write custom codes into the activated child theme? Or there is another way to customized the theme.
There is no concept of child themes in shopify. Shopify refers to copies as duplicates, and a theme is either published or unpublished.
Before editing a themes structure make a duplicate and this is generally what should be worked on instead of the published(live) until all changes are done and the theme previews look ready.
If used to version control software(git) there are tools to automate the upload/download so you can work with your preferred editor locally.
So If you want customize the theme then just create a duplicate copy of the main the theme and do your all changes in the duplicate theme and see the all changes using theme preview option. After completing all of the changes, you can publish the duplicate theme and it will work as an active theme.

Modify theme Shopify from template html

I want to know how to modify a theme shopify from a template (html,css,bootstrap). I have list of folder that contain files of css, html and bootstrap. i need to integrate theme in shopify theme how to do it please ?
THANK you.
Customizing themes
You can add custom functionality or information by editing your theme code. a Shopify theme have the extension .liquid , and are known as Liquid templates.Aside from Liquid, Shopify theme files also contain HTML, CSS, and JavaScript.
read this
https://help.shopify.com/themes/customization

Creating a custom BigCommerce theme from scratch, without selling it in the theme store

A client of mine wants to create their ecommerce site with BigCommerce as back-end. BigCommerce has lots of theme's available in their theme store. This client however does not want to be just another website using a certain theme, but have a theme unique to their company. You can build your own theme which would use your own config.php, something they use to set global variables in their templating engine.
However as far as I can read on their developers site the only way that you could create your own theme is if you then start selling it in the theme store, which of course would allow other companies to adopt this same theme against a certain price. Something my client doesnt want. They want to be unique.
So my question is: Can you create a custom bigcommerce theme from scratch, without selling it in the theme store?
Absolutely, however you can set up a config.php file and all that. You can simply start with any theme available in the current theme store, download the HTML, CSS, JS, Image, etc files and customize them to your liking. These are completely open ended.
You won't really miss anything this way, the only thing the config file does is set the default store settings when that theme is applied such as menu depth, fly out menus, display of weight, etc. All that can be adjusted manually by you or your client in the store settings!
So to answer my own question directly: No, you cannot create a theme from scratch without being a parter of bigcommerce and making your theme available in the theme store.
You can get close as #TheEks describes by simply choosing a theme (preferably the blueprint, available when going in to dev mode), and then overwriting whatever contents the html files have. You will need to check for updates to the bigcommerce theme yourself and implement those in your code. You will not be able to remove theme files, if you no longer use them, from the webdav server, only revert them to their original state. You can just ignore them of course.

Add custom bg color and logo option for a div in header from admin panel theme options - wp twenty eleven theme

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.