hkalant
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Theme: Reddle] Responsive tweetsOk, I will try these options. Thanks again!
Forum: Themes and Templates
In reply to: [Theme: Reddle] Responsive tweetsYes, we are talking about the same thing.
(Can you still see the large double quote? I thought I deleted it…)
Anyway, it seems that
embed.css
is being loaded automatically and last.Is there any way for the
style.css
to be loaded last?Forum: Themes and Templates
In reply to: [Theme: Reddle] Responsive tweetsHello,
Thanks!
It doesn’t work though.
I don’t use a plugin to embed tweets. I use the new WordPress 3.4 feature by just pasting the tweet link in my post.
Forum: Themes and Templates
In reply to: [Twenty Eleven] Background behind featured postThank you very much. You are awesome.
Forum: Themes and Templates
In reply to: Add serchbox to nav in twentyelevenAdd this into
functions.php
of the theme:<code> function fb_add_search_box ( $items, $args ) { // only on primary menu if( 'primary' === $args -> theme_location ) $items .= '<li class="menu-item menu-item-search">' . get_search_form( FALSE ) . '</li>'; return $items; } add_filter( 'wp_nav_menu_items', 'fb_add_search_box', 10, 2 ); </code>
Check this article out, too: https://wpengineer.com/2244/search-form-in-wp-nav-menu/
Forum: Themes and Templates
In reply to: [Twenty Eleven] Borders around menuHello again!
One last thing I just noticed. For example take a look at this single post: https://blog.elemedu.gr/2011/07/google-plus-or-google-minus/
When you hover on the menu, the date the post published and the navigation (next/previous) go a little lower. When you don’t, they come back to normal height.
Any suggestions?
Thank you.
Forum: Themes and Templates
In reply to: [Twenty Eleven] Borders around menuyou are great!
much prettier now, huh?thank you very much.
Forum: Themes and Templates
In reply to: [Twenty Eleven] Borders around menuThank you Esmi!
The border on top is pretty high, though.
Any chance to fix that, too?Forum: Themes and Templates
In reply to: [Twenty Eleven] Borders around menuThis is my blog using Twenty Eleven: blog.elemedu.gr
Forum: Themes and Templates
In reply to: Bio disappear below posts in TwentyElevenI recently made a child theme of Twenty Eleven for my blog and I have another problem about author’s bio.
In a status post, the author’s bio looks like this: https://i56.tinypic.com/21devlh.png.
In other post types it works fine – text is at the same height as the author’s avatar.
Any ideas to fix this?
thank youForum: Themes and Templates
In reply to: Bio disappear below posts in TwentyElevenI removed
is_multi_author ()
but it didn’t work.
Then I removed&& is_multi_author ()
and it works!
Thank you guys.Forum: Themes and Templates
In reply to: Bio disappear below posts in TwentyElevenYeah, that’s weird!
Could anyone from the designers tell us what is going on, please?
Forum: Themes and Templates
In reply to: Bio disappear below posts in TwentyElevenWell, it seems that Twenty Eleven doesn’t support author info below posts at all.
Forum: Themes and Templates
In reply to: How To Use Custom Logo instead of Text in TwentyEleven Theme ?Open header.php and find this part:
<h1 id="site-title"><span><a>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></span></h1>
Replace
<?php bloginfo( 'name' ); ?>
with the url of the logo.Forum: Fixing WordPress
In reply to: Styling multiple-page postsHello,
Can I change the way numbers are showing up in multi-page posts in Twenty Ten theme? I can’t find the piece of CSS code that is responsible for that.
(I would like to remove the grey background and use some border-radius for the corners.)
thnx.