Ithril
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] Issue with featured pages zoom effectHey rdell, i tried that too but nothing fix, it’s kinda weird cause it works fine with parent theme but when i activate my child theme zoom effect just dissapear.
Forum: Themes and Templates
In reply to: [Customizr] Menu Tittle for Mobil Device SupportHey, i had a similar problem and Acub gave me a solution. Try this:
.btn-navbar:after { content: "Menu"; float: right; margin: -16px 0 0 0; }
That should add the “Menu” word to your 3 lines collapsed menu. Hope it helps.
Forum: Themes and Templates
In reply to: [Customizr] Featured Pages LinkDone, i just need to change border properties to
.round-div { border: 104px solid rgba(0, 0, 0, 0);
it makes circles transparent and keeps links working.
Forum: Themes and Templates
In reply to: [Customizr] qtranslateTake a look at this post there is a lot of help about qtranslate. Regards
Forum: Themes and Templates
In reply to: [Customizr] Logo in footer/watermarkTry this link it worked fine for me, but be sure to read the whole post ;).
Forum: Themes and Templates
In reply to: [Customizr] Collapsed navigation menu@jrisberg is there a way to make it shows current menu item instead of “Menu” word?
Forum: Themes and Templates
In reply to: [Customizr] Not Social but phoneHey malissas great idea! is there a way to use that custom funcion to place my current menu item in social icons place when nav is collapsed??
Forum: Themes and Templates
In reply to: [Customizr] Chang theme colourYou should take a look at the FAQ tehere you’ll find many solutions about colours, for example changing menu colours.
Forum: Themes and Templates
In reply to: [Customizr] Child theme & FooterThanks for the advice acub, now i have a bit of work to do with my site…
The way you explain is the best, this way i can add many other functions without adding custom php files to my child theme.Forum: Themes and Templates
In reply to: [Customizr] Child theme & FooterTake a look at this post it’s exactly what you’re looking for.
Forum: Themes and Templates
In reply to: [Customizr] How to remove "Designed by Themes & Co ·" in footerYou can change that info in class-footer-footer_main.php but i recommend you to do it in a child theme. The lines you are looking for are this ones
<div class="span4 credits"> <?php tc__f( 'tip' , __FUNCTION__ , __CLASS__, __FILE__ ); ?> <?php $credits = sprintf( '<p> · © %1$s <a href="%2$s" title="%3$s" rel="bookmark">%3$s</a> · Designed by %4$s ·</p>', esc_attr( date( 'Y' ) ), esc_url( home_url() ), esc_attr(get_bloginfo()), '<a href="'.TC_WEBSITE.'">Themes & Co</a>' ); echo $credits; ?> </div>
There you can edit that info and add your own by adding a link on the “href” and changing “Themes & Co” for your name.
Forum: Themes and Templates
In reply to: [Customizr] Put a logo on the widget footerI asked something similar and maybe it works for you too, take a look at this post. Hope you find it usefull.
Forum: Themes and Templates
In reply to: [Customizr] Help with the menu please (Font size,menu box size)It was already posted several times in the forum but can’t remember the name of the post, but you can check theme FAQ there you’ll find a lot of information abou many things you asked here in the forum.
Forum: Themes and Templates
In reply to: [Customizr] How to delete the Title and resize the menuFor the header banner i suggest you to use a plugin like easy banners, here’s the link
But there may be issues with responsiveness.
Forum: Themes and Templates
In reply to: [Customizr] How to delete the Title and resize the menuJust add this code to your custom CSS or child theme
.navbar-wrapper .brand a { display: none;}
Also if you want to add a logo in the future you should remove this code or it won’t appear.