Viewing 27 posts - 1 through 27 (of 27 total)
  • Author
    Posts
  • #1188394

    Hello!

    I’ve looked to many forum entries but unfortenly i haven’t found the right solution til now. I would like do change the “readmore” link to a Button with hover effect. I would like to replace the whole <p> with a button (avia button) and not just style the link as a button. Would you please give me an advice how to create a solution for this problem?

    I would be glad if you could help me styling the Blog Layout entries with border around each entry and the categorie should be displayed in the thumbnail picture left at the top as you can see in the Layout on the page in private Content.

    Thank you for your answer!

    Glad to hear from you soon.

    #1188923

    Hey topnetat,

    Could you please attach a mockup of what you’re trying to achieve?

    Do you need to have the hover effect over the excerpt?

    Best regards,
    Victoria

    #1189113

    Hi Victoria!

    see in private content Thanks!

    Regards

    #1190364

    Hi,

    Thank you for the update.

    This is the same exact style of the read more button used in the estably site.

    .read-more-link {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    min-width: 220px;
    padding: 15px 20px;
    background-color: #c3a069;
    border: 1px solid #c3a069;
    border-top-color: rgb(195, 160, 105);
    border-right-color: rgb(195, 160, 105);
    border-bottom-color: rgb(195, 160, 105);
    border-left-color: rgb(195, 160, 105);
    display: block;
    min-width: 0;
    text-align: center;
    border-radius: 4px;
    font-family: DINPRO,Arial,sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    color: #c3a069;
    -webkit-transition: all .3s cubic-bezier(.4,0,.2,1);
    transition: all .3s cubic-bezier(.4,0,.2,1);
    -webkit-box-shadow: 0 20px 40px rgba(49,50,54,.3);
    box-shadow: 0 20px 40px rgba(49,50,54,.3);
    color: #6d6b76;
    background-color: hsla(0,0%,100%,0);
    border-color: #6d6b76;
    -webkit-box-shadow: none;
    box-shadow: none;
    }

    We just replaced the selector with the class name used by the theme for the read more link element. You can add the code in the style.css file or the Quick CSS field.

    Best regards,
    Ismael

    #1190376

    Hi Ismael!

    Thank you for Reply. I just insert your code. The text in button is in center an not based right? And the button is to big at all? unfortenly the hover effect doesnt work like the same as in the other blog? Could you please have a look at it?

    Thank you for you help!
    Regards,

    #1190774

    Hi,

    Thank you for the update.

    This is the hover style of the button.

    .read-more-link a:hover {
        color: #fff;
        border-color: #c3a069;
        background-color: #c3a069;
        -webkit-box-shadow: 0 20px 40px rgba(49,50,54,.3);
        box-shadow: 0 20px 40px rgba(49,50,54,.3);
        -webkit-transition: all .15s cubic-bezier(.4,0,.2,1);
        transition: all .15s cubic-bezier(.4,0,.2,1);
    }
    
    

    In the previous css code, please replace the selector:

    .read-more-link
    

    ..with:

    .read-more-link a
    

    Best regards,
    Ismael

    #1190801

    Thank you for your Help the Support is better than 5/5 stars!

    One more question i got – how can i set the Catergory text, in the picture at top? Now at the button of the image. I want it to be part of the image and not above.

    Thanks for the reply!

    Kind Regards

    #1191411

    Hi,

    You’re welcome. Thank you for the kind words.

    Now, to move the category above the image, add this snippet in the functions.php file.

    function ava_custom_js_footer_code() {
    	?>
    	<script>
    	(function($) {
    		$('.slide-entry').each(function() {
    			var entry = $(this),
    				image = entry.find('.slide-image'),
    				cat = entry.find('.blog-categories'),
               		meta = entry.find('.slide-meta'),
                	title = entry.find('.slide-entry-title');
    				
    			cat.appendTo(image)
                meta.insertAfter(title)
    		});
    	})(jQuery);
    	</script>
    	<?php
    }
    add_action('wp_footer', 'ava_custom_js_footer_code');

    Then use this css code to adjust the position of the category container.

    .html_elegant-blog #top .avia-content-slider .blog-categories.minor-meta {
    	position: absolute;
    	top: 10px;
    }

    Best regards,
    Ismael

    #1191434

    Thank you Ismael! Works fine.

    Are there any options to put the publishing date direct after the Title? At the bottom of the Tittle?

    And is it possible to set a border around each blog entry in layout?

    Thanks for your reply!

    Best reagards
    Topnetat

    #1191675

    Hi,

    We modified the snippet above to move the post meta info below the post title. Please replace the previous one with it.

    Afterwards, add this css code to remove the margin above the post meta info.

    .html_elegant-blog #top .post-entry .post-meta-infos, .html_elegant-blog .avia-content-slider .slide-meta {
    	margin-top: 0;
    	float: none;
    }

    And use this css to create borders around the post items.

    .slide-content {
    	border: 1px solid gray !important;
    	padding: 10px;
    	border-top: none !important;
    	margin-top: -10px;
    }

    Best regards,
    Ismael

    #1191757

    Thank you very much Ismael! It works fine!

    How could the line above und at the bottom of the Date be removed? You see in private the link to the blog page.

    Thanks for you answer!

    #1191862

    Hi,

    Add this to quick css:

    .html_elegant-blog .avia-content-slider .slide-meta{
    border-top:none!important;
    border-bottom:none!important;
    }

    Best regards,
    Jordan Shannon

    #1191872

    Thank you perfect but i got another question. If you look at the blog page. how to display the shadow at the left side of the blog entries and the right side? It lookes like they are sniped there?

    Also could we give all entries in a line the same height?

    Best Regards
    topnetat

    #1191889

    Hi,

    I’m not seeing a shadow issue. Can you screenshot?

    Best regards,
    Jordan Shannon

    #1191895

    Link to the scresnhot in private.

    Thanks for your help!

    #1191951

    Is there any possibilite to style the top of the picture from blog overview with shaddow a bit darker?

    in private you see a link what i try to archieve – thanks for your suggestion.

    Kind Regards

    #1191960

    Hi,
    I cant seem to switch off the “share this” feature that places “print, email, whats app, link etc…. to the bottom of a post?
    I have switched off all options under the Blog Layout option “Share links at the bottom of your blog post” but they are still there!
    I would like to switch them off as they are throwing up thousands of no-flow errors on google!
    Any help?
    Many thanks
    Mark

    #1192039

    Hi markship,

    Please start a separate thread, describe your issue there and give us a link to your website.

    Best regards,
    Victoria

    #1192860

    Hello! Any Updates for me?
    Thanks!

    #1192861

    Hello!
    Could you please share css with me for the following question?
    I would like to add media query wich set 2 Blog Post in one Line if the Screen is smaller than 1400px – Would you please help me?

    Kind Regards

    #1192956

    Hi,

    Add this to quick css:

    @media only screen and (max-width: 1400px) and (min-width: 767px)  {
    .PostCard {
        max-width: 46.2%!important;
    }}

    Best regards,
    Jordan Shannon

    #1193010

    Hi unfortenly not working? Could you please check again… ?

    #1193023

    Hi,

    Did you add the code to the very to of quick css so it runs first? Also, clear the cache a few times over.

    Best regards,
    Jordan Shannon

    #1193027

    Hi Jordan Shannon!

    I`ve clear cache 20 times and nothing. Would you please have a closer look at it? Would you like to login?
    Also could we give all entries in blog overview in a line the same height?

    Regards

    #1193872

    Hi together!

    Any Updates? I would be glad to hear from you!

    Kind Regards Elias

    #1194789

    Could we give all entries in a line the same height?

    #1196947

    Hi,

    Sorry for the late reply!

    Please add following code to Quick CSS

    .slide-image {
        box-shadow: 0 -3px 6px 0 rgba(0,0,0,.3);
        margin-top: 10px !important;
    }

    That should add shadow to post image as well.

    Best regards,
    Yigit

Viewing 27 posts - 1 through 27 (of 27 total)
  • You must be logged in to reply to this topic.