This page contains solutions for general questions
<div class="selectstyle"> <select name="myselect"> <option value="option1">Option 1</option> <option value="option2">Option 2</option> <option value="option3">Option 3</option> </select> </div>
If you haven't installed the Envato Market Plugin on your site Click here to know how to install this plugin on your site.
Please disable / delete the Envato WordPress Toolkit plugin on your site as development of this plugin is ended, and they officially recommend to use the new Envato Market plugin. Read the official declaration on this link.
Here are steps to disable comments from existing pages:
Here are steps to disable comments from new pages (so comments would be disabled on new pages too) :
You can follow steps given below:
Admin > Plugins
section.
- Manually installing the plugin (if you don't get message to install the plugin in admin section):
You can install the Envato Market Plugin manually. Just click here to download plugin and install it via regular plugin installation process. There is also another way to install the plugin. After activation, just configure the plugin to make it work.
- Auto installing the plugin (if you get message to install the plugin in admin section):
Admin > Appearance > Theme Options > Menu Settings
section. Just go to this section and select window size (or set pixel) under "Responsive Menu Breakpoint" option.Note: If you don't find the option than you are using old version of the theme. Please update the theme to the latest version to get this option.
The option will look like this:
NOTE: You should know HTML and CSS languages for this.
You can use your own custom font with our theme too. You should have TTF file for this. Here is the overall steps:
There are so many online (free) services than can convert your font files. Here are some websites:
https://onlinefontconverter.com/
https://transfonter.org/
https://www.fontsquirrel.com/tools/webfont-generator
Just convert your fonts from any of the above site and download converted files on your pc.
Example:
If you try to convert "Open Sans" font and if you have open-sans.ttf file than you can convert and get these files after converting it:
Now you need to upload the downloaded font files on your server. Just create a new folder on your server at root and upload the files in it.
For example:
Now the files are uploaded on our site. So first we need to add @font-face
CSS to add the font to use in CSS code. You can write custom code in our theme at Admin > Appearance > Theme Options > Custom Code > CSS Code box. So add code like this:
@font-face { font-family: 'Open Sans'; src: url('/my-custom-font/open-sans.eot'); /* IE9 Compat Modes */ src: url('/my-custom-font/open-sans.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/my-custom-font/open-sans.woff') format('woff'), /* Modern Browsers */ url('/my-custom-font/open-sans.ttf') format('truetype'), /* Safari, Android, iOS */ url('/my-custom-font/open-sans.svg#svgFontName') format('svg'); /* Legacy iOS */ }
Now the font is available to use. So we are going to apply the font on H1 tag (for testing only). Here is the sample code:
h1{ font-family: "Open Sans", Verdana, Tahoma !important; }You can add class to apply the font on it. That's it.
<div class="col-sm-4 col-md-4 col-lg-4"><p>[text* your-name placeholder "Your Name"]</p></div> <div class="col-sm-4 col-md-4 col-lg-4"><p>[email* your-email placeholder "Your Email"]</p></div> <div class="col-sm-4 col-md-4 col-lg-4"><p>[text* your-website placeholder "Your Website"]</p></div> <div class="col-xs-12 col-sm-12 col-md-12 col-lg-12"><p>[textarea your-message placeholder "Your Message"]</p></div> <div class="col-xs-12 col-sm-12 col-md-12 col-lg-12"><center><p>[submit "Send"]</p></center></div>
<p>Your Name (required)<br /> [text* your-name] </p> <p>Your Email (required)<br /> [email* your-email] </p> <p>Subject<br /> [text your-subject] </p> <p>Your Message<br /> [textarea your-message] </p> <p>[submit "Send"]</p>