tomaja
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] change content footer without child theme@apestaartje – you can add something like this (bellow previous css code)
.span4.credits:before { content: url(http://link.to.your.site.or.something.else/) " MY SITE "; color: gray!important; }but I really do recommend child theme and function snippet.
Forum: Themes and Templates
In reply to: [Customizr] change content footer without child theme@apestaartje – its ok, but you need to add this too
.span4.credits> p > a:nth-child(1) { display: none; }Forum: Themes and Templates
In reply to: [Customizr] Slider Links No Longer Working?I dont see slider buttons on your slides, you need to edit slider, then add button text to see your link(s).
Forum: Themes and Templates
In reply to: [Customizr] change content footer without child themeBy changing widgets in the 3 footer widget areas ?
If you want to change credits at the bottom you need to check this snippet. But if you dont want to use child theme you will have to do some hard coding on default class-footer-footer_main.php file which is not recommended.Forum: Themes and Templates
In reply to: [Customizr] Delete date and author in search resultsTry to add
.search .entry-meta { display: none; }to your custom css
Forum: Themes and Templates
In reply to: [Customizr] Change background color of footer areaHi,
you can use this snippet to make your changes in the footer.Forum: Themes and Templates
In reply to: [Customizr] How to Increase Width of Sidebar?You must understand that this theme has responsive design, so its all about width in % with fixed ratios between elements. If you make left sidebar fixed your right sidebar will go under main content. So you can add e.g.
.left.tc-sidebar { width:25%; }but that would be good just for high screen resolutions. So to keep it responsive, you will have to choose right span that fit your needs, maybe to exclude right sidebar (and then you can expand left sidebar even more) from showing or to wrap above code to @media queries, something like this
@media screen and (min-width: 1080px){ /* your code here */ }Forum: Themes and Templates
In reply to: [Customizr] Customizr Slider with SidebarThanks @nikeo, I was just about to make that correction too, wild thing on post lists with __loop only 🙂
@lozadaomr did you actually set any slider for front page ? It is working on my test siteForum: Themes and Templates
In reply to: [Customizr] how do I remove sidebar on one pageNice to see its working for you. You can make this thread [resolved] if you like. Thanks.
Great. Im glad it worked.
Hi eric,
check this snippet for solution.Forum: Themes and Templates
In reply to: [Customizr] Image logo not showingLink to your site please ?
Forum: Themes and Templates
In reply to: [Customizr] Customizr Slider with Sidebar@lozadaomr – check the image url, it seems that image is not accessible
Forum: Themes and Templates
In reply to: [Customizr] Remove Headershere is how can you do it with css only, just copy the code bellow to custom css field at your http://cobbyrowan.com/wp-admin/customize.php , tab “Custom CSS”
header h1.entry-title { display: none; }header h2.entry-title { display: none; }Forum: Themes and Templates
In reply to: [Customizr] Remove HeadersHi cobby,
place this function in functions.php of your Customizr child theme:add_action ('__before_body' , 'remove_post_header'); function remove_post_header() { remove_action ( '__before_content' , array( TC_post::$instance , 'tc_post_header' )); }