Forum Replies Created
- AuthorPosts
Themonic-Support
KeymasterYes, but it would require custom work. Contact [email protected] for quote.
Themonic-Support
KeymasterSite Background color will affect all pages.
Please check if the Customizer -> Background Image is not set as that overrides the background color settings.
If that doesn’t work then disable all plugins and set background color and check.
If that also doesn’t fix it then send email to [email protected] along with login details, we will check and fix it.
Themonic-Support
KeymasterHi,
Very Sorry about the thread, it must have got deleted during the 2 hour downtime yesterday as hosting company was upgrading to latest OS.
The blue image in sidebar is just a placeholder image, it appears when you do not have set a featured image.
It’s location is Theme folder -> img folder -> sidethumb -> default.png
You can browse to this location using ftp software like filezilla.
You can replace it with same name image and size of 60 x 42px
Themonic-Support
KeymasterPlease try the following custom css, replace hex color code with your choice if needed.
1)
.bypostauthor { background: #f7a3a3; }
2)
li.bypostauthor cite span { background-color: #f43f3f; }
3)
.js .selectnav { background: #f43f3f; }
Themonic-Support
KeymasterYes, only one at a time, another option is given below:
If you want logo along with background then:
Upload logo in customizer and use custom css like this
.site-header { background-image: url(“http://yoursite.com/wp-content/uploads/imagename.jpg” ); }
this type of background usually works best with pattern type images for eg.
from subtlepatterns.com as it is not responsive.Themonic-Support
KeymasterFor sidebar links
.widget-area .widget a { color: #0099ff; }
we don’t delete any of the posts unless it’s a duplicate.
Themonic-Support
KeymasterPlease try after disabling all plugins and saving settings, after that you can enable plugins. If issue persists email details to [email protected] with link to this thread and along with login details.
Themonic-Support
KeymasterPlease refer Docs: http://themonic.com/online-documentation-usage-guide-for-iconic-one-pro/
Header image option is in live customizer. Width must be 1040px, height can be your choice.
Themonic-Support
KeymasterCodes and guide available here:
Themonic-Support
KeymasterTry this:
open Appearance -> Editor -> functions.php
on line 51 you will see
add_image_size('excerpt-thumbnail', 200, 140, true); // Sets Index Page Thumbnails
Replace it with
add_image_size('excerpt-thumbnail', 200, 140, false); // Sets Index Page Thumbnails
We just changed true to false.
true: images will be cropped : this is the default
false: images will be scaled : can cause uneven sizes if your parent images are of different sizes.- AuthorPosts