tomaja
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] How to change the footnote on my website?Forum: Themes and Templates
In reply to: [Customizr] move logo positiontry to add
.tc-header .brand { margin-top:25px; }
to your custom css
Forum: Themes and Templates
In reply to: [Customizr] Code in the HEAD sectionI just checked it on my testing site and it works, it loads the script to the head
Forum: Themes and Templates
In reply to: [Customizr] Code in the HEAD sectionOk, it should work with wp_enqueue_script
function custom_js() { wp_enqueue_script('myscript', 'https://ads.redcoruna.com/delivery/spcjs.php?id=50', false, '1.0' ); } add_action ('wp_enqueue_scripts','custom_js');
Forum: Themes and Templates
In reply to: [Customizr] Code in the HEAD sectionmaybe this will help
function custom_js() { echo '<script type="text/javascript" src="https://ads.redcoruna.com/delivery/spcjs.php?id=50"></script>'; } add_action('admin_head', 'custom_js'); add_action('wp_head', 'custom_js');
Forum: Themes and Templates
In reply to: [Customizr] moving menu downMaybe you should center your header elements.
Check this snippet for solution.Forum: Themes and Templates
In reply to: [Customizr] I need help with footerHi @lizfitch,
you can do that with Find&Replace plugin. After install you can find it in the WP-admin/Tools tab. If your RSS feed is in the first footer widget area just replace
<div id=”footer_one” class=”span4″> with
<div id=”footer_one” class=”span12″>
same goes for other two widget areas, just adjust footer_…
Hope it helps.Check this snippet
Forum: Themes and Templates
In reply to: [Customizr] Link style post with shared pluginAdd
article.format-link .entry-content a:after { content: none; }
to your custom css
Forum: Themes and Templates
In reply to: [Customizr] Langue bug with Featured Page Text@startwebsiting copy
customizr/parts/class-content-featured_pages.php to child-theme/parts/class-content-featured_pages.php and it should workCheers
Forum: Themes and Templates
In reply to: [Customizr] Adding "Read More" Links to postsHi @wifsster
add this functionfunction new_excerpt_more($more) { global $post; return ' <a href=" ' .get_permalink($post->ID). '" class="read-more">' . 'Read more >' . '</a>'; } add_filter('excerpt_more', 'new_excerpt_more');
to functions.php file in your Customizr child theme folder.
Forum: Themes and Templates
In reply to: [Customizr] Reposition Social Media Icons in Header@sc0rpiongirl
I can see now why previous css code didnt work, you have changed social block width to span5 so you need to change span3 to span5 e.g.:.social-block.span5 { position: absolute; float: right; left:70%; }
Forum: Themes and Templates
In reply to: [Customizr] Reposition Social Media Icons in HeaderAs I can see with firebug it seems that removing
.brand.span10.offset1 { float: none; }
will center the logo
Forum: Themes and Templates
In reply to: [Customizr] Reposition Social Media Icons in HeaderIt would be easier to align it to the left, just with removing
float:right;
Still. you can try adding.social-block.span3 { position: absolute; float: right; left:90%; }
Forum: Themes and Templates
In reply to: [Customizr] Reposition Social Media Icons in Header@sc0rpiongirl
Yes, I think you dont need that one from the “center…” snippet