tomaja
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] how do I remove sidebar on one pageWhen editing specific page, go to layout options (on the top of the right bar on edit screen) and choose “full witdh” if you dont want to see sidebars on that page.
Forum: Themes and Templates
In reply to: [Customizr] How to Increase Width of Sidebar?Hi Jomala,
you can do that with Find&Replace plugin. After install you can find it in the WP-admin/Tools tab. Just replace
<div class="span3 left tc-sidebar">with
<div class="span4 left tc-sidebar">and
<div class="span3 right tc-sidebar">with
<div class="span2 right tc-sidebar">if you want to expand left sidebar with reducing right sidebar.
If you want to shrink content area instead right bar that replace
<div id="content" class="span6 article-container">with
<div id="content" class="span5 article-container">Forum: Themes and Templates
In reply to: [Customizr] Slider Text& Buttonthen you can control it with
.carousel-caption { /*your code here*/ }For example, if you want it totally transparent you can set
.carousel-caption { background:none; /* add color instead none if you want*/ }Nice to see that it works for you and thanks for the feedback.
Forum: Themes and Templates
In reply to: [Customizr] Slider Text& ButtonThe one with h1 is slider title, so if you want to remove him just use e.g.
.carousel-caption h1 { display: none; }If you want to change its appearance then change font-size and color values to fit your needs. Same goes for the rest. The one with the p is for slider text bellow slider title and last one is for button (the one with .btn). If you want to change button link then you should use e.g.
.carousel-caption a.btn { float: right; /*moves button to the right*/ color: red; /*color of the button text*/ }Forum: Themes and Templates
In reply to: [Customizr] glyphicons missing from some widgets on pageIm glad that it worked out at the end. Under 2) you can make it clickable with adding src=”” with link in your <img> tag.
CheersForum: Themes and Templates
In reply to: [Customizr] Slider Text& ButtonCheck this slider snippets, you should be able to do what you want. In the Change the font/size/color of the Slider Titles rules you can add
display: none;if you wish to remove them from display.Forum: Themes and Templates
In reply to: [Customizr] Customizr Slider with SidebarAs I said, follow the instructions in the snippet. Line you need to change is in the snippet code that you need to put in functions.php file of your child theme.
Forum: Themes and Templates
In reply to: [Customizr] How to add logo to Header.php ( ADD logo no work )It seems to me that you have changed default Customizr php and css files which is not good. I suggest to reinstall all default Customizr files. All changes should be in Customizr child theme folder.
If something is broken in WordPress as you said then you should do the same with it. Default Customizr install works good, and with logo in place where you want it.
Before you do anything, backup your site (database and all files) in case something goes wrong or you want to save css changes.Forum: Themes and Templates
In reply to: [Customizr] Customizr Slider with SidebarYou can use this snippet, just replace
add_action( '__header' , array( TC_slider::$instance , 'tc_slider_display' ), 0);
with
add_action( '__loop' , array( TC_slider::$instance , 'tc_slider_display' ), 0);
but you then must adjust slider witdh (and height) to fit that narrow space between two sidebars.It is possible, you can use something like this for specific posts/pages e.g.
/* for specific post */ .postid-33 #customizr-slider.carousel .item { height: 230px; min-height: 230px; line-height: 230px; }/* for specific page */ .page-id-12 #customizr-slider.carousel .item { height: 230px; min-height: 230px; line-height: 230px; }To determine what is specific id for post or/and page use page source view option in your browser.
If you wish to use it on all posts and pages than just .page or .single should be enoughForum: Themes and Templates
In reply to: [Customizr] placing linked buttons in the headerFor posting buttons in the header (see header on demo.themesandco.com) you can use this snippet, by adding button classes to links, e.g.
class="btn btn-mini btn-info"
If you like to post images instead you can use adapted function from this thread. just add src”” to <img> tags if you want linked images.There is no need for snippet, you just need to point WordPress to send posts to your newly created page. You can do that at yoursite.com/wp-admin/customize.php , tab “Front Page”, for option “Front page displays” select A static page, and then for option “Post page” your new page.
Forum: Themes and Templates
In reply to: [Customizr] Dynamic featured pageForum: Themes and Templates
In reply to: [Customizr] glyphicons missing from some widgets on pageTry with
.site-description:before { content: '\1F4DE'; }for adding content – icons before tagline take a look at this thread.