Can't Find Div Tag to Edit Element Style
-
https://www.bluemoutnainbelle.com
In a post or page when I make something and un-ordered list this happens in the code.
<ul> <li><span style="font-size: 14.44444465637207px; line-height: 1.5;">Hello</span></li> <li><span style="font-size: 14.44444465637207px; line-height: 1.5;">Whats up</span></li> </ul>' I do not want the font size and spacing to change. You can seen an example here https://www.bluemountainbelle.com/2013/04/05/happy-friday-links-6/ the 2nd bullet point has smaller font From inspecting the element its an "element style".
element.style {
font-size: 14.44444465637207px;
line-height: 1.5;
}`So I have been looking in the HTML Files to find the inline styles. but have had no luck.
This is the div tag if I make a list in a post
<div class="post-content clearfix"> <input class='jpibfi' type='hidden' data-jpibfi-url='https://www.bluemountainbelle.com/2013/04/18/2155/'/><ul> <li><a style="font-size: 14.44444465637207px; line-height: 1.5;" rel="nofollow" href="https://www.brightontheday.com/" target="_blank">Brighton The Day</a></li> <li><a style="font-size: 14.44444465637207px; line-height: 1.5;" rel="nofollow" href="https://www.classygirlswearpearls.com/" target="_blank">Classy Girls Wear Pearls</a></li> </ul> </div> I have only been able to find that div tag in my rtpannel:loop-common.php
<div class=”post-content clearfix”>
<?php rtp_hook_begin_post_content(); ?><?php rtp_show_post_thumbnail(); ?>
<?php if ( is_singular() || !$rtp_post_comments[‘summary_show’] || rtp_is_bbPress() ) {
the_content( __( ‘Read More →’, ‘rtPanel’ ) );
wp_link_pages( array( ‘before’ => ‘<div class=”page-link clearfix”>’ . __( ‘Pages:’, ‘rtPanel’ ), ‘after’ => ‘</div>’, ‘link_before’ => ‘<span>’, ‘link_after’ => ‘</span>’ ) );
} else {
@the_excerpt();
} ?><?php rtp_hook_end_post_content(); ?>
</div`So I have not been able to find where to edit this element. please help!!
Also if I toggle from list to not, it keeps those <span> tags and put them everywhere
Thanks
- The topic ‘Can't Find Div Tag to Edit Element Style’ is closed to new replies.