• hi,
    fisrt sorry for my very bad english.
    I want to remove the instructor name in the courses page.
    I tried to do that with CSS.
    I write
    .course-instructor .a {
    display: none;
    }

    But il doesn’t works.

    I don’t understand why.
    If i write this :
    .course-info {
    text-transform: capitalize;
    }
    it works !
    so I can transform the text but I can’t remove it.
    Could you help me please.
    thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter delas2010

    (@delas2010)

    I tried this:
    It doesn’t work as well

    .course-instructor {
    display: none;
    }

    if I try
    .course-info {
    display: none;
    }

    the instructor name disapear but the price disapear too and I want to see the course price !!

    if I try this:
    .course-instructor {
    font-variant: small-caps;
    }
    I can see the small caps.

    so why

    .course-instructor {
    display: none;

    }
    doesn’t work ????

    • This reply was modified 5 years, 10 months ago by delas2010.
    • This reply was modified 5 years, 10 months ago by delas2010.
    Thread Starter delas2010

    (@delas2010)

    I find by using :

    .course-instructor {
    display: none !important;

    }
    It’s not very nice but it works!!!

    what is link your site, I will send code for you

    Thread Starter delas2010

    (@delas2010)

    My site isn’t online.
    it’s on local webserver for the moment.

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘remove instructor name in courses page’ is closed to new replies.