tomaja
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] Want to add image to left of Tagline@sovietski05
For your option 1 you could use real-time-find-and-replace plugin to replace e.g.<div class="social-block span5">with<div class="social-block span3">and<h2 class="span7 inside site-description">with<h2 class="span9 inside site-description">or you can copy class-header-header_main.php to your child theme where you can change those span values.Forum: Themes and Templates
In reply to: [Customizr] Want to add image to left of TaglineIt make sense :), especialy 1 and 3.
You can add.navbar-inner .social-block { display: none; }to your custom css to remove social icons block and then you can enlarge span number (up to 12) in above function.
Forum: Themes and Templates
In reply to: [Customizr] Removing the bar below the Footer Credit AreaTry to add
#wpstats { display:none; }to your custom css or child theme style.css
Forum: Themes and Templates
In reply to: [Customizr] Want to add image to left of TaglineYou have social icons block on the left side. It consumes about 40% of the available space (span5) while tagline has 60% (span7).
Forum: Themes and Templates
In reply to: [Customizr] Want to add image to left of TaglineYou can always add class to the img tag
like <img src="link_to_image" class="image_class">
and after that you can apply all the css rules in style.css that you want.
I also recommend to you to take a look at Customizr snippets page, its great resource
Btw, you can make this thread resolved. Thanks.Forum: Themes and Templates
In reply to: [Customizr] glyphicons missing from some widgets on pageCustomizr uses 2 sets of icons: Entypo and Genericons and you can add them to your text widget titles, e.g.
.widget_text h3:before { content: '\f301'; }If you wish to use free glyphicons then I recommend svg-vector-icon-plugin
Forum: Themes and Templates
In reply to: [Customizr] Want to add image to left of TaglineHi, you can use this function in your child theme functions.php file
add_filter( 'tc_tagline_display' , 'my_icon_in_tagline'); function my_icon_in_tagline() { global $wp_current_filter; ?> <?php if ( !in_array( '__navbar' , $wp_current_filter ) ) :?> <div class="container outside"> <h2 class="site-description"> <img src="http://icons.iconarchive.com/icons/iconshock/google-buzz/24/buzz-9-icon.png" alt="Buzz"> <?php bloginfo( 'description' ); ?> </h2> </div> <?php else : //when hooked on __navbar ?> <h2 class="span7 inside site-description"> <img src="http://icons.iconarchive.com/icons/iconshock/google-buzz/24/buzz-9-icon.png" alt="Buzz"> <?php bloginfo( 'description' ); ?> </h2> <?php endif; ?> <?php }Icon in example is just some buzz icon, you need to replace it with the link to your icon. If you need more icons, just make few more <img> tag lines.
I hope this will help.Forum: Themes and Templates
In reply to: [Customizr] Remove menubar and replace with textHi 4phone,
you are using Duena theme, you should post your question here. Thanks.Forum: Themes and Templates
In reply to: [Customizr] Responsive NavigationHi Andrea,
you could easily add text to your button with this snippet.Forum: Themes and Templates
In reply to: [Customizr] Header changed by an imageYou can have either image or text line in the logo position. That option can be set at yoursite.com/wp-admin/customize.php , “Logo & Favicon” tab.
Forum: Themes and Templates
In reply to: [Customizr] Remove icon before page headersJust add
article.page .format-icon:before { content: none; }to your child theme style.css file.
Forum: Themes and Templates
In reply to: [Customizr] Point Home Featured Page to Custom LinkUntil then, ou can use the redirection plugin, by creating empty page (as one of the featured pages) which will be redirected whatever URL you want.
I hope this may help you.Forum: Themes and Templates
In reply to: [Customizr] Setting the posts pageWhat I did to achieve this was to create an empty page with name “blog”. Then select in options (yoursite.com/wp-admin/options-reading.php or yoursite.com/wp-admin/customize.php look at Front Page tab) that static content is shown on the front page and your new blog page to act as post page.
Only thing you have to do after that is to add link to the same page in your main menu.Forum: Themes and Templates
In reply to: [Customizr] Remove Front Page Featured ExcerptYou could also use css, check this snippet
Forum: Themes and Templates
In reply to: [Customizr] Remove Front Page Featured ExcerptJust put
in the Featured text one field. Same goes for Featured text two and three