-
AuthorPosts
-
October 25, 2015 at 9:10 am #638831
ChristopherModeratorHi there,
The code should work, please provide us with exact URL of page where you have issue.
#1
.anyipsum-form-header { margin-bottom: 25px; }#2 Regretfully, at this time I am not entirely certain what it is you would like to accomplish based on the information given in your post. If you wouldn’t mind providing us with a little more clarification on what it is you’re wanting to do (a link to a similar example site would be very helpful, or perhaps some screenshots), we’ll be happy to provide you with a response once we have a better understanding of the situation.
#3
.single-post p, .single-post span, .single-post a { font-family: cursive; }#4
.blog .entry-wrap { padding: 0; }Hope that helps.
October 25, 2015 at 9:46 am #638860
LatinoMattersParticipant1. I’ve updated the post to show what it looks like when I use the text elements from Cornerstone rather than WordPress’ default post. You will see that the indentation is still there on the text and author box.
https://www.latinomatters.com/2015/10/20/1236/
2. Sure thing. I’d like to specifically change the look, color of the date, time, author at the top. I’d also like to move this information below the featured image as well. Image attached. #2.
3. The CSS above converts most font on the sites, not just the blog posts. I attached a screenshot labeled #3.
4. Works perfectly.
Thanks.
October 25, 2015 at 4:56 pm #639173
LelyModeratorHello There,
1.) Please also add the following CSS:
.single .x-section .x-container.width { width: 100%; }The left space is because section container is not set to 100%;
2.) To move entry meta’s position please update wp-content/themes/x-child/framework/views/integrity/content.php file into this:
<?php // ============================================================================= // VIEWS/INTEGRITY/CONTENT.PHP // ----------------------------------------------------------------------------- // Standard post output for Integrity. // ============================================================================= ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <?php x_get_view( 'integrity', '_content', 'post-header' ); ?> <div class="entry-featured"> <?php x_featured_image(); ?> <?php x_integrity_entry_meta(); ?> </div> <div class="entry-wrap"> <?php x_get_view( 'global', '_content' ); ?> </div> <?php x_get_view( 'integrity', '_content', 'post-footer' ); ?> </article>After that, copy the file wp-content/themes/x/framework/views/integrity/_content-post-header.php in your child theme’s folder /framework/views/integrity/, open the copied file in a text editor and replace entire code with following:
<?php // ============================================================================= // VIEWS/INTEGRITY/_CONTENT-POST-HEADER.PHP // ----------------------------------------------------------------------------- // Standard <header> output for various posts. // ============================================================================= ?> <header class="entry-header"> <?php if ( is_single() ) : ?> <h1 class="entry-title"><?php the_title(); ?></h1> <?php else : ?> <h2 class="entry-title"> <a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to: "%s"', '__x__' ), the_title_attribute( 'echo=0' ) ) ); ?>"><?php x_the_alternate_title(); ?></a> </h2> <?php endif; ?> </header>Please add the following CSS to change meta look:
p.p-meta { color: red; font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; font-style: italic; }*Feel free to change the value to your preferred font color and font family.
Further customizations from here would be getting into custom development, which is outside the scope of support we can offer. If you need more in depth changes, you may wish to consult with a developer. X is quite extensible with child themes, so there are plenty of possibilities. Thanks for understanding.
3. Please update CSS to this:
.single-post .entry-content p, .single-post .entry-content span, .single-post .entry-content a { font-family: cursive; }Hope this helps.
-
AuthorPosts
- <script> jQuery(function($){ $("#no-reply-633565 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>
