tomaja
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] choose specific posts for front pageI guess the simpliest way is to add those two posts to specific category which will be then shown on the front page.
Forum: Themes and Templates
In reply to: [Customizr] Slider – making the spaces smallerI should be working, at least it did when I was checking with Google Chrome Inspector. Your slider images are now within normal size, no more gap ?
Forum: Themes and Templates
In reply to: [Customizr] Widget Icons – How to get them to show up?It can be done with the use of pseudo :before css element and entypo icons in the same way that it was done in Customizr but you need to know your custom widget title css classes, so it would be nice if you can provide link to your site with already placed alternative widget.
Forum: Themes and Templates
In reply to: [Customizr] Slider – making the spaces smallerThis can be done by changing values for line-height, but you must be carefull because slider is resposive (for better adapting to different browser sizes), so you must include @media queries to make your change work on all screens. For smart phones this is the default Customizr css code where you can change height values in px
@media (max-width: 480px) { .carousel .item { line-height: 190px; overflow: hidden; min-height: 190px; } }and for big desktop screens
@media (min-width: 1200px) { .carousel .item { line-height: 500px; overflow: hidden; min-height: 500px; } }I suggest you read this snippet that explains this much better and in details.
Forum: Themes and Templates
In reply to: [Customizr] Posts PageFor categories and tags you have solution out of the box, just use links for pages like http://yoursite.com/category/category_name and http://yoursite.com/tag/tag_name
I also recommend this snippet for custom post types, taxonomies, custom fields,…Forum: Themes and Templates
In reply to: [Customizr] Slider not working after updateDo you use default slider that comes with Customizr or some other ?
Forum: Themes and Templates
In reply to: [Customizr] Slider Images on Mobile DeviceOn my android google chrome everything is looking ok, responsive slider is working as expected, and on my browser mobile device modes looks ok as well. Just checked first site, the other one is not using Custimizr theme.
Forum: Themes and Templates
In reply to: [Customizr] Why does the first letter of a menu item stay small?This is an option integrated into theme menu. To change size of the first letter you need to add
.navbar .nav > li > a:first-letter { font-size: 42px; }Forum: Themes and Templates
In reply to: [Customizr] Featured image not displayed in postsFeatured images should be 270×250 in size, to achieve zoom efect is working properly. Those images are not supposed to be shown in full text but only within excerpts.
Forum: Themes and Templates
In reply to: [Customizr] Delete subscribe widget once subscribed?This has nothing to do with Customizr theme. You should post it on the widgets support forum.
Forum: Themes and Templates
In reply to: [Customizr] Translation in child themeExplanation for this could be found on Codex child theme pages
Forum: Themes and Templates
In reply to: [Customizr] featured images transition don't workYour featured images should be 270×250 in size. Check this page about specific image sizes.
Forum: Themes and Templates
In reply to: [Customizr] sidebar problemCan you provide link to your site please ?
You could use this snippet, by changing link to fit your needs, e.g. adding few classes for button
Forum: Themes and Templates
In reply to: [Theme Customizr] View the full articlesYou can use this snippet to override default excerpts settings. That parameter for full post is ment for feeds so it has no effect on pages.