Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #679071

    speester
    Participant

    I would like the front of the card to only be an image therefore how do i remove the title and content from the front and back of “card”

    only one specific “card” NOT site-wide

    Thanks !

    #679100

    Prasant Rai
    Moderator

    Hello Nelson,

    Thanks for writing in! To assist you with this issue, we’ll first need you to provide us with your URL. This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.

    Thanks.

    #679728

    speester
    Participant
    #679735

    Rue Nel
    Moderator

    Hello There,

    Upon checking your url we could not find a card element on the page. If you want to remove the title and content of the card, please edit your page in Cornerstone and insert the following custom css in the settings tab, Settings > Custom CSS

    .x-card-outer .x-face-title, 
    .x-card-outer .x-face-text {
      display: none;
    }

    If there are several card elements on the page and you only want to remove the card title and card content on a specific card element, please turn on the advance controls and insert a custom my-card ID. You can then use this custom css in the settings tab, Settings > Custom CSS

    #my-card .x-face-title, 
    #my-card .x-face-text {
      display: none;
    }

    Hope this helps. Please let us know how it goes. Thank you.

    #679752

    speester
    Participant

    Great help.

    Thanks !

    #679757

    Friech
    Moderator

    Glad we could help.

    Cheers!

    #752142

    lukeletellier
    Participant

    URL: http://www.lukeletellier.wpstagecoach.com
    Wordpress: 4.4.1
    X: 4.3
    Cornerstone: 1.0.11
    Renew

    Hello,

    I’m using Renew, and I don’t even have the option to enable Advanced Controls (see attachment). Is there a way to un-hide the switch that allows me to use advanced controls so that I can use the code you’ve mentioned?

    Thanks!
    Luke

    #752364

    Friech
    Moderator

    Hi Luke,

    On Cornerstone: 1.0.11 the Advanced Controls toggle was remove. But the ID, CLASS, and STYLE field are shown by default on all elements, sections, rows and columns. If that is not the case on your end. Please do a test for a plugin conflict. You can do this by deactivating all third party plugins, and seeing if the problem remains. If it’s fixed, you’ll know a plugin caused the problem, and you can narrow down which one by reactivating them one at a time.

    Hope it helps, Cheers!

    #753205

    lukeletellier
    Participant

    Thanks – that makes sense! I wasn’t sure if the ID I was seeing on my end was the same one that you were referring to.

    Thanks again for your help,
    Luke

    #753360

    Thai
    Moderator

    You’re most welcome 🙂

    If you need anything else, please let us know.

    #987927

    cleokerkhof
    Participant

    Hi guys,
    This works.

    How about if I want no text in the front,
    but I do want text and a stylish button on the back.
    Is this possible?

    Thanks in advance.
    Cleo

    #988332

    Joao
    Moderator

    Hi Cleo,

    Thanks for writing in! To assist you with this issue, we’ll first need you to provide us with your URL. This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.

    Thanks,

    Joao

    #1104230

    gintel
    Participant
    This reply has been marked as private.
    #1104681

    Jade
    Moderator

    Hi there,

    Please add this code in the customizer:

    .x-card-outer.flip-3d.flipped {
        background-color: #7c7c7c;
    }

    Hope this helps.