Qlue
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Trident Lite] Hide the "about the author" boxHi,
Can you try this?
Add the following CSS to Appearance > Theme Options > Advanced
#author-title { display: none; } #authorbio { display: none; }
Hope this helps ??
Forum: Themes and Templates
In reply to: [Trident Lite] Category not display navigation pageHi,
I assume you are mentioning about pagination in the category pages.
Can you please enter this custom CSS?
.paging-navigation { clear: both; }
Hope this helps ??
Forum: Themes and Templates
In reply to: [Trident Lite] about blank block problem in the home pageHi,
Can you try entering this CSS?
.paging-navigation { clear: both; }
Forum: Themes and Templates
In reply to: [Trident Lite] Distorted "feature image"Hi,
Can you try regenerating thumbnails? You can use a plugin like this – https://www.ads-software.com/plugins/regenerate-thumbnails/
Ideally an image with a width of 750px or more will look nice.
Forum: Themes and Templates
In reply to: [Trident Lite] Making the layout thinnerHi,
You can change the width of the container by adding the following CSS in custom.css file. In the example below, we are changing container width to 960px.
@media (min-width:1200px) { .container { max-width: 960px; } #content #primary { max-width: 670px; } #content #secondary { max-width: 270px; } }
We are planning to improve the handling the featured images in the next few theme updates, thanks for the feedback.
Hope this helps ??
Forum: Themes and Templates
In reply to: [Esperanza Lite] Changing post header font and colorIn header.php file, after the following line of code:
</nav><!-- #site-navigation -->
you will have to add this line:
<?php get_search_form();?>
You will have to adjust the CSS a little to make it look nice ??
Forum: Themes and Templates
In reply to: [Esperanza Lite] Changing post header font and colorPlease try placing the following code in Theme Options > Advanced > Custom CSS (which will override default CSS settings):
h1.entry-title, h1.entry-title a { color: #002AFF ; font-family: 'Open Sans', sans-serif; }
Also please make sure to add the stylesheet of Google font if you are using it.
Hope this helps ??
Forum: Themes and Templates
In reply to: [Esperanza Lite] how to change the font color for theme?Hello,
In our latest update (v1.1) we have added an option to change colors in the theme options.
Appearance > Theme Options > Styling
You can adjust the Primary color
I hope this helps ??