Forum Replies Created
-
AuthorPosts
-
Gunter, thank you very much for trying to find a solution!
I actually tried what you said, but had some hick-ups (I am not a coder :) ). Ether way I thought about it, and i really don’t want to do some super special modification and brake the design, since i may have problem in the future because of this.
So thank you again! I learned a lot.
Please consider this issue solved.
P.S.: Awesome support!
Thank you Ismael, this eliminated the space between the image and the post.
Unfortunately I still don’t see the link being written over (as overlay) the image it self. Do you have any idea why this is the case?
This reply has been marked as private.Hi Gunter,
Thank you for your quick reply. I tried what you suggested and was able to move my blog title above the picture not over as I planed (so picture would be in the background of the link it self). Below is the code I used:
//my moved blog post header echo '<div class="entry-content-wrapper clearfix standard-content my-moved-header">'; echo '<header class="entry-content-header">'; echo $title; echo "<span class='post-meta-infos'>"; $markup = avia_markup_helper(array('context' => 'entry_time','echo'=>false)); echo "<time class='date-container minor-meta updated' $markup>".get_the_time(get_option('date_format'))."</time>"; echo "<span class='text-sep text-sep-date'>/</span>"; if ( get_comments_number() != "0" || comments_open() ){ echo "<span class='comment-container minor-meta'>"; comments_popup_link( "0 ".__('Comments','avia_framework'), "1 ".__('Comment' ,'avia_framework'), "% ".__('Comments','avia_framework'),'comments-link', "".__('Comments Disabled','avia_framework')); echo "</span>"; echo "<span class='text-sep text-sep-comment'>/</span>"; } $taxonomies = get_object_taxonomies(get_post_type($the_id)); $cats = ''; $excluded_taxonomies = apply_filters('avf_exclude_taxonomies', array('post_tag','post_format'), get_post_type($the_id), $the_id); if(!empty($taxonomies)) { foreach($taxonomies as $taxonomy) { if(!in_array($taxonomy, $excluded_taxonomies)) { $cats .= get_the_term_list($the_id, $taxonomy, '', ', ','').' '; } } } if(!empty($cats)) { echo '<span class="blog-categories minor-meta">'.__('in','avia_framework')." "; echo $cats; echo '</span><span class="text-sep text-sep-cat">/</span>'; } echo '<span class="blog-author minor-meta">'.__('by','avia_framework')." "; echo '<span class="entry-author-link" '.avia_markup_helper(array('context' => 'author_name','echo'=>false)).'>'; echo '<span class="vcard author"><span class="fn">'; the_author_posts_link(); echo '</span></span>'; echo '</span>'; echo '</span>'; echo '</span>'; echo '</header>'; echo '</div>'; //echo preview image ...
Any idea how to move the link to overlay the picture?
Waw this was fast! Thank you, works great!
-
AuthorPosts