Hi there,
I’m trying to customise my idea page and I’ve sort of succeed, just need a little help to fix some minor details.
What I’m trying to achieve is this (a normal page):

And what I have so far is this:

Can you help me remove the lines and add the same spacing between title and text?
Here is the code I’ve added to the functions.php of my child theme:
/*blog*/
function add_my_title() {
if(is_home()){
?>
<header class="x-header-landmark x-container max width">
<h1 class="h-landmark"><span><?php echo x_get_option( 'x_renew_blog_title' ); ?></span></h1>
<p class="p-landmark-sub"><span><p class="has-drop-cap"> A central aspect at Copenhagen Furnishing is the dialogue with the customer. To be able to create spaces that people love to live in, you need to know what they want and how they think. This is why we talk to our customers for as long as needed. To make sure that their personalities is reflected in our work, and their ideas is not forgotten in the process of work. Please feel free to review some of our projects below.</p></span></p>
</header>
<?php }
if ( is_category()) { ?>
<?php
$meta = x_get_taxonomy_meta();
$title = ( $meta['archive-title'] != '' ) ? $meta['archive-title'] : __( 'Category Archive', '__x__' );
$subtitle = ( $meta['archive-subtitle'] != '' ) ? $meta['archive-subtitle'] : __( "Below you'll find a list of all posts that have been categorized as ", '__x__' ) . '<strong>“' . single_cat_title( '', false ) . '”</strong>';
?>
<header class="x-header-landmark x-container max width">
<h1 class="h-landmark"><span><?php echo $title ?></span></h1>
<p class="p-landmark-sub"><span><?php echo $subtitle ?></span></p>
</header>
<?php
}}
add_action( 'x_after_view_global__slider-below', 'add_my_title', 10 );
Regards,
Carina



