• Hey guys, how are you?
    I have two questions: how can I put the text aligned justified in the four columns in TG Services?
    Another question: I managed to remove the “read more” link from the TG Services text in the desktop version. however, when opening on the cell phone, this link appears. how to take of?

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • @diadevasco

    Can you add the below CSS code to Additional CSS box and check?

    .widget_service_block p {
        text-align: justify;
    }
    .more-link {
        display: none;
    }

    Thanks.

    Thread Starter diadevasco

    (@diadevasco)

    Hi, Nitu. Thanks for the quick response. Worked fine on desktop version, but in mobile still not working, both “read more” and justified text.

    @diadevasco

    Can you add the below CSS code to Additional CSS box and check?

    @media screen and (max-width: 767px) {
    .widget_service_block p {
        text-align: justify;
    }
    .widget_service_block .more-link-wrap {
      display: none;
    }
    }

    Thanks.

    Thread Starter diadevasco

    (@diadevasco)

    Unfortanelly didn′t work.

    @diadevasco

    Can you add the below CSS code to Additional CSS box and check?

    @media (max-width: 768px) {
    	.widget_service_block p, .widget_service_block .tg-one-third, .widget_service_block .tg-one-third .widget-title {
    		text-align: justify;
    	}
    	.widget_service_block .more-link-wrap {
    		display: none;
    	}
    }

    Thanks.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘TG Services justified text’ is closed to new replies.