Forum Replies Created

Viewing 30 posts - 31 through 60 (of 168 total)
  • Author
    Posts
  • in reply to: Add class to blog post grid category #1223571

    i should add, i’m happy to customise a template file as i’m using a child theme, just let me know which one to look for.

    in reply to: Add category to blog post grid (display order) #1223570

    i should add, i’m happy to customise a template file as i’m using a child theme, just let me know which one to look for.

    in reply to: Blog Posts / Grid Layout – equal height columns #1223560

    certainly helped me – thank you!
    actually, while i’m here – how about vertical alignment in those columns?
    is there a way to vertically align (bottom) the .read-more-link ?
    Jason

    • This reply was modified 3 years, 10 months ago by Jason.
    in reply to: Toggle links not working as expected on mobile #1183720

    hi there,
    any progress on this? it’s still causing issues in chrome on mobile.
    thanks,
    Jason

    in reply to: image hover overlay (background color) on mobile #1182184

    no, i’m wrong – didn’t work. it seems there’s a pseudo class which handles the display of the title, & the change of background color.

    .grid-entry a:hover::before {
        content: attr(title);
        position: absolute;
        width: 100%;
        z-index: 1000;
        text-align: center;
        opacity: 1;
        font-size: 18px;
        color: 
        #fff !important;
        transform: translateY(-50%);
        animation: avia-fadein .75s 1 cubic-bezier(0.175,0.885,0.320,1.275) !important;
        top: 50%;
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 0 !important;
    }

    this is showing the title on mobile – but not changing the background color. i’ve been trying unsuccessfully to sort this, can I use :active with :before ?
    can’t seem to get this to work no matter what i do – help?

    i’ve even tried this
    #top a .grid-image.avia-hover-fx:active {background:#1d2553!important;}
    while i’m here should the rule go inside, or outside of a media query – given this is only mobile we’re targeting, i’d have thought inside – is that correct?

    • This reply was modified 4 years, 2 months ago by Jason.
    in reply to: image hover overlay (background color) on mobile #1181157

    yes, it worked, in my case i used:
    .slide-entry:active .slide-image {background:#1d2553;}

    in reply to: image hover overlay (background color) on mobile #1181153

    brilliant – thank you Nikko, i’ll take a look & report back :)

    in reply to: Blog Posts – post title text overlay #1174710

    hi Ismael,
    almost…
    here are the styles i’ve used to get the overlay (i added a custom class – .thoughts)

    .thoughts span.image-overlay:hover {background:#1d2553;}
    .thoughts span.image-overlay-inside {display:none;}
    #top .thoughts h3 a {font-weight:normal;color:#ffffff;}

    if you hover over the image, only the top 30% triggers the background color, the bottom 70% triggers the title – but no background color change.
    also, is there any way to center the title vertically better?
    i works well with 2 lines, but not so great with just a single line. not a biggie, but i know the client will ask – so it’d be good to let them know it’s not simple to do so.
    thanks heaps,
    Jason

    • This reply was modified 4 years, 3 months ago by Jason.
    in reply to: Portfolio sorting – linking from an external page #1166227
    This reply has been marked as private.
    in reply to: Portfolio sorting – linking from an external page #1166184

    Hi Rikard – the info from the post Victoria recommended works perfectly – thank you!

    in reply to: Portfolio sorting – linking from an external page #1165704

    Thanks Victoria – I’ll take a look :)

    in reply to: Move H1 entry title #1156324

    All good to close this one Rikard, thank you

    in reply to: Move H1 entry title #1156263

    thanks Yigit – perfect

    in reply to: Move H1 entry title #1155781

    hi there,
    bnewburger’s solution would do the trick, but his code throws me an error.
    can someone please check it (i’m not a programmer) or, if there is a better solution out there now, can someone please let me know?
    many thanks,
    Jason

    in reply to: previous / next links on single posts #1148749
    This reply has been marked as private.
    in reply to: previous / next links on single posts #1148739

    brilliant Ismael, thanks so much!
    i can take it from here :)

    in reply to: previous / next links on single posts #1147935
    This reply has been marked as private.
    in reply to: previous / next links on single posts #1147931

    Thanks Ismael, please find attached :)

    in reply to: previous / next links on single posts #1146312

    Ok, so I’ve tried various approaches mentioned here, but I’m still having no luck (I’m obviously an amateur). I’m going to see if a friend with a little more PHP knowledge can help me out. Guenni007 – if you’re still interested in taking a look I’ll happily give you admin access.

    in reply to: previous / next links on single posts #1145568

    Apologies for the lack of response, I’ve been flat out on other projects. I’ll revisit today & report back.

    in reply to: Portfolio grid text overlay #1142054

    Hi Victoria,
    Yes, odd how the excerpt isn’t in the HTML, I’ll revisit that other thread & look a little closely at it.
    Will report back.
    Thanks,
    Jason

    in reply to: Portfolio grid text overlay #1141639

    Hi Victoria,
    I’ve kind of already got this, as you can see above i’m not displaying anything below the grid image – but on top of it, on hover. i already have the title appearing, & have title & excerpt selected via the grid options, plus I have added an excerpt to the post, but it’s not displaying the excerpt – only the title.
    here’s the css i’ve used (found on another thread here):

    /* Portfolio overlay with title - disable default animation */
    #top .grid-entry a:hover .image-overlay .image-overlay-inside {
    	animation:none;
    }
    
    /* Portfolio overlay with title - overlay */
    #top .grid-entry .image-overlay .image-overlay-inside:before {
    	content:'';
    	position:absolute;
    	background:#1d2553; /* blue */
    	height:100%;
    	width:100%;
    	border-radius:0;
    	top:0;
    	left:0;
    	margin:0;
    }
    
    /* Portfolio overlay with title - remove default title below */
    .grid-content .avia-arrow,#top .grid-entry .grid-content {
    	display:none;
    }
    
    /* Portfolio overlay with title - display title on hover*/
    .grid-entry a:hover:before {
    	content:attr(title);
    	position:absolute;
    	width:100%;
    	z-index:1000;
    	text-align:center;
    	opacity:1;
    	font-size:18px;
    	color:#fff!important;
    	transform:translateY(-50%);
    	animation:avia-fadein .75s 1 cubic-bezier(0.175,0.885,0.320,1.275)!important;
    	top:50%;
    	padding:0!important;
    	display:flex!important;
    	align-items:center;
    	justify-content:center;
    }
    
    .avia_transform a:hover .image-overlay {
    	opacity:1!important;
    }

    so i want the excerpt to appear below the title.

    in reply to: previous / next links on single posts #1141638

    Hi Victoria, this just seems to hide part of the existing left/right arrows.
    I want to completely remove them & have them as plain text links below the post – as explained above.
    Can you help me with that?

    in reply to: Portfolio Sorting #1141167

    ok, thanks Victoria :)

    in reply to: previous / next links on single posts #1141166

    hi Victoria, links sent to you privately.
    what i’m wanting is previous (text link) on the left, next (text link) on the right, below the meta, but above the share (for example).
    i’ve also attached a screenshot of my blog setup.

    in reply to: previous / next links on single posts #1141165

    hi Guenni007, that sounds great – but it’s a development site, so i don’t really want to publish publicly – can i provide to you more privately?

    in reply to: Portfolio grid text overlay #1140801

    Hi Victoria,
    I’m not sure what page you’re talking about as I didn’t link to one(?)
    In any case, I’ll provide a link to this page in the private content area for you now.
    Thanks :)

    in reply to: Portfolio grid text overlay #1139786

    Ok, so I’ve made some progress with this
    example
    by amending the following to:

    .grid-entry a:hover:before {
    	content: attr(title);
    	position: absolute;
    	width: 100%;
    	z-index: 1000;
    	text-align: center;
    	opacity: 1;
    	font-size: 18px;
    	color: #ffffff !important;
    	transform: translateY(-50%);
    	animation: avia-fadein 0.75s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275)  !important;
    	top: 50%;
        padding: 0 !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    Final piece of the puzzle for me, is to get the excerpt in there, below the title – any ideas anyone?

    • This reply was modified 4 years, 7 months ago by Jason.
    in reply to: Portfolio grid text overlay #1139783

    This *almost* works for me, the title is offset horizontally, any ideas?
    example

    Thank you Victoria :)

Viewing 30 posts - 31 through 60 (of 168 total)