How to center all text body in single.php at once?

There is probably some CSS you can add via Additional CSS (in Theme CUstomization) that you could use. Use the Inspector tool of your browser (F12) to see the CSS ‘class’ element used in the content. If the class is called ‘the_content’, then add this to your Additional CSS: .the_content{text-align:center !important;} You might need this, … Read more

Make a full-width wordpress page

This is more of a CSS question than a template question. The class “row” is adding a max width of 75rem on your template. Looks like this in the inspector: .row { width: 100%; margin-left: auto; margin-right: auto; margin-top: 0; margin-bottom: 0; max-width: 75rem; } That’s coming from this style sheet: https://tuberadar.nl/wp-content/themes/gateway/app.css?ver=5.1.1 Without rooting through … Read more

Show subcategory name selected in specific category woocoommerce

To display only assigned category you need to change hide_empty to true. Please see the modified code: $args = array( ‘hierarchical’ => 1, ‘show_option_none’ => ”, ‘hide_empty’ => true, ‘parent’ => 134, ‘taxonomy’ => ‘product_cat’ ); $subcats = get_categories($args); echo ‘<ul class=”wooc_sclist”>’; foreach ($subcats as $sc) { $link = get_term_link( $sc->slug, $sc->taxonomy ); echo ‘<li><a … Read more

How can publish my bootstrap created table ( huge amount of data) on my word-press theme?

If you want to add custom html code into your wordpress site probably the best approach is a custom template : https://developer.wordpress.org/themes/template-files-section/page-template-files/ Add the following to a new .php file into your template folder with this : <?php /* Template Name: My Template */ ?> Paste you custom html after it. Then open WP admin … Read more

HTML not resizing

I’m sorry I don’t have enough recommendation to comment your question and ask for more information. To answer your question as I understand it : This is CSS related. If you only used the HTML part of your “3rd party site”, it is normal you don’t have any CSS style applied (unless it is inline … Read more