It is very possible. Can not go into very details how. This is more info than you need.
Will give you some directions:
- Insert code from examples above inside CMS Code control (not HTML, not Shortcode, not Text)
- For each tab make new custom Page template. Click on Customize TEMPLATE style on all 3 place possible in settings.
- Remove absolute everything from custom Page templates except Content Control/Block.
- Go in backend and assign new template(s) to your pages.
- In code from URLs above remove content text and replace it with this PHP code (adapt Page IDs to your own).
And voila, you can click on each tab and edit style separately. Dont forget to click on tab with right mouse button and "Open link".
<?php
$my_postid = 118;//This is page id or post id
$content_post = get_post($my_postid);
$content = $content_post->post_content;
$content = apply_filters('the_content', $content);
$content = str_replace(']]>', ']]>', $content);
echo $content;
?>
It is very possible. Can not go into very details how. This is more info than you need.
Will give you some directions:
1. Insert code from examples above inside CMS Code control (not HTML, not Shortcode, not Text)
2. For each tab make new custom Page template. Click on Customize TEMPLATE style on all 3 place possible in settings.
3. Remove absolute everything from custom Page templates except Content Control/Block.
4. Go in backend and assign new template(s) to your pages.
5. In code from URLs above remove content text and replace it with this PHP code (adapt Page IDs to your own).
And voila, you can click on each tab and edit style separately. Dont forget to click on tab with right mouse button and "Open link".
<?php
$my_postid = 118;//This is page id or post id
$content_post = get_post($my_postid);
$content = $content_post->post_content;
$content = apply_filters('the_content', $content);
$content = str_replace(']]>', ']]>', $content);
echo $content;
?>