tomaja
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] How to show blog excerpts on blog post page?I saw that you have changed theme on your wp site so i cant look further, but still, the above code should work even on new theme.
Forum: Themes and Templates
In reply to: [Customizr] Top Nav barMaybe is got something to do with your logo image size.
Links to your sites please ?Forum: Themes and Templates
In reply to: [Customizr] How to show blog excerpts on blog post page?Your posts should have excerpts with 55 words in them by default, so only thing you have to do is to remove more tag or <!–more–> from the posts.
For adding “read more” to excerpts instead default […] you need to add this function in to your childs theme function.php// Changing excerpt more function new_excerpt_more($more) { global $post; return '… <a href="'. get_permalink($post->ID) . '">' . 'Read More »' . '</a>';} add_filter('excerpt_more', 'new_excerpt_more');Forum: Themes and Templates
In reply to: [Customizr] Change Color of Comment Button.comments-link .fs1 { color: red; }change red color to whatever color you want
Forum: Themes and Templates
In reply to: [Duena] trouble changing social iconsYou are missing css for that icon, so you need to put
.icon-youtube:before { content: "\f167"; }into your style.css file of your child Duena theme or custom css field in admin area. It is not good to change default Duena files because you will lose all changes after theme update.
Forum: Themes and Templates
In reply to: [Customizr] Front Page Image SliderDo not post new questions in already resolved thread. Make new one.
Forum: Themes and Templates
In reply to: [Customizr] Footer widget link color css?Add
footer#footer a { color: #F78C40; }in style.css file of your child theme or custom css field and change the color if you need to
Forum: Themes and Templates
In reply to: [Customizr] Line Above FooterSure there is
footer#footer { border-top: none; }Forum: Themes and Templates
In reply to: [Customizr] Unable to view Parent Page with Customizr themeYou will need this snippet to make parental links clickable.
Forum: Themes and Templates
In reply to: [Customizr] Removing Pencil (avail snippet doesnt work anymore)It will work on blog pages. You can try
.post h1.format-icon::before { content: none; }.post h2.format-icon::before { content: none; }Forum: Themes and Templates
In reply to: [Customizr] Custom space in homepageMaybe these one two snippets can help you out. You can also use text widgets in sidebars for custom content. Also check Codex page about ads.
Forum: Themes and Templates
In reply to: [Customizr] Blog on blogNothing to do with Customizr theme, you should ask your question somewhere else, but anyway, you will need multisite feature, so check http://codex.wordpress.org/Create_A_Network or install WPMU.
If you just need to allow other users to post on your blog read thisForum: Themes and Templates
In reply to: [Customizr] no sidebars on home pageIf you set to show static page on the front page then you can set even front page layout to with left, right or both sidebars. Not to say that you can adjust sidebar layouts for each separate page or post.
Go to yoursitedomain.com/wp-admin/customize.php , then click on the “Front Page” tab and make the setting you want, e.g. choosing “A Static Page” in the “Front Page displays” option opens new “Set up the front page layout” option where u can select to view sidebar(s).Forum: Themes and Templates
In reply to: [Customizr] bbPressmaybe you should try http://redhorsecrm.com/forum instead …/forums
Forum: Themes and Templates
In reply to: [Customizr] Text below the taglineYou can use this snippet