Pro <body>

Hi, in Pro, where is the section? I’ve found wp-header.php inside public_html/wp-content/themes/pro/framework/legacy/cranium/headers/views/integrity but where the is placed?

Thanks.

Hi There,

Did you mean the open <body> tag?

It should locate under public_html/wp-content/themes/pro/framework/legacy/cranium/headers/views/global/_header.php:

<?php

// =============================================================================
// VIEWS/GLOBAL/_HEADER.PHP
// -----------------------------------------------------------------------------
// Declares the DOCTYPE for the site and includes the <head>.
// =============================================================================

?>

<!DOCTYPE html>

<html class="no-js" <?php language_attributes(); ?>>

<head>
  <?php wp_head(); ?>
</head>

<body <?php body_class(); ?>>

  <div id="x-root" class="x-root">

    <?php do_action( 'x_before_site_begin' ); ?>

    <div id="top" class="site">

    <?php do_action( 'x_after_site_begin' ); ?>

Customization guide: https://theme.co/apex/forum/t/customizations-best-practices/205

Hope it helps :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.