Constanza "Connie" Green
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Move featured image below post title – NanoAshley, is it possible to have the URL of the site to give it a look?
weird, i’m sure i posted that link you found.
sorry about that :S
Forum: Themes and Templates
In reply to: Move featured image below post title – NanoHey Ashley,
this should be your code
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <header class="entry-header"> <h1 class="entry-title"> <a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a> </h1> <?php if ( has_post_thumbnail( $post->ID ) ) { ?> <div class="entry-thumbnail"> <?php if ( has_post_thumbnail( $post->ID ) ) { ?> <?php if ( is_single() ) { ?> <?php $attachment_url = wp_get_attachment_image_src( get_post_thumbnail_id(), 'full' ); $image_url = ( $attachment_url ) ? $attachment_url[0] : ''; ?> <a href="<?php echo $image_url; ?>" class="wrapper-overlay prettyphoto" title="<?php __( 'Large View', 'nano' ); ?>" rel="bookmark"><?php the_post_thumbnail( 'full' ); ?><span class="img-overlay"></span><span class="icon icon-zoom-in"></span></a> <?php } else { ?> <a href="<?php the_permalink(); ?>" class="wrapper-overlay" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'nano' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_post_thumbnail( 'full' ); ?><span class="img-overlay"> </span><span class="icon icon-external-link"></span></a> <?php } ?> <?php } ?> </div> <?php } ?> <?php if ( 'post' == get_post_type() ) { nano_post_top_info(); } ?> </header><!-- .entry-header --> <div class="entry-content"> <?php if ( is_single() ) { the_content(); wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'nano' ), 'after' => '</div>', ) ); } else { the_content(); } ?> </div><!-- .entry-content --> <footer class="entry-meta group"> <?php nano_meta(); ?> </footer><!-- .entry-meta --> </article><!-- #post-## -->Hope this helps
-Connie GreenForum: Themes and Templates
In reply to: [Customizr] Removed Page Title but not the space for it…No problem. glad it was of some kind of help π
Forum: Themes and Templates
In reply to: [Customizr] Removed Page Title but not the space for it…EDIT: guess i took too long to reply π
Hey starlingirl,
What your snippet did was to add display: none; to the H1 where the title was, but the header containing it is still there taking up space.
hope that helps,
– Connie GreenForum: Themes and Templates
In reply to: First themeHey Bitwit,
thanks a lot, i spent around 3 days on working on this (it doesn’t sound like much maybe, but it was almost non-stop :P). i was following a series of tutorials of which, this is the last one
I didn’t want to follow it step by step so i used my own code, and the series has small errors which pushed me to research and read a lot
Now, after a short break, i’ll work on that last part which is getting the theme to WordPress standards and maybe if i’m really happy with it, release it π
Any and all advises, tips or whatever are appresiated
– Connie Green
[Moderator Note: Please ensure that you are embedding links correctly in your posts. Link corrected.]
Forum: Themes and Templates
In reply to: Remove Icon/Images for each widget categoryhey Kailey,
i downloaded the theme and i’m sure is there and that it works, but maybe you can try something really simple
i downloaded this plugin
https://wordpress.org/plugins/simple-custom-css/
that lets you add your own custom css, and that way you don’t have to toy with the theme’s one
UPDATE: and i just found out the theme has its own way of modifying the CSS
On your dashboard go to Appearance > Theme Options > Advanced settings and add the css there (the plugin is still a good choice to download π )
i added this css
/* removes icons from archives */ .widget_archive .widget-inner li a:before { display: none; } /* removes icons from recent posts */ .widget_recent_entries .widget-inner li a:before { display: none; } /* removes icons from recent comments */ .widget_recent_comments .widget-inner li:before { display: none; } /* removes icons from categories */ .widget_categories .widget-inner li a:after { display: none; }and if you do want the icons in the future, you just delete this, or part of it.
i hope this helps and let me know if you are still having problems.
– Connie Green
Forum: Themes and Templates
In reply to: Background ImageHey Brynne
From what i can see, you have a different image that doesn’t exist (this one http://glutenfreehungrygirl.com/wp-content/uploads/2014/03/chevron-pink.png) on your custom.css that’s overriding the one you want, if you get rid of it, it should all work out alright.
hope this helps
– Connie Green
Forum: Themes and Templates
In reply to: [Virtue] How do I remove icons next to widget categories?Kailey, i replied on your other post
http://wordpress.org/support/topic/remove-iconimages-for-each-widget-category?replies=3#post-5657882
Forum: Themes and Templates
In reply to: Oxygen theme: Can't remove horizontal scrollbarHello Kalaamichelle
I visited your website but i didn’t see any horizontal scrollbars. I checked on chrome and firefox, are you using a different one?
– Connie Green
Forum: Themes and Templates
In reply to: Remove Icon/Images for each widget categoryHey Kailey
if you know how to edit your CSS, on your virtue.css just look for
.widget_recent_entries .widget-inner li a:before { font-family: FontAwesome; font-style: normal; speak: none; font-weight: 400; content: "\f040"; float: left; margin-left: -20px; webkit-font-smoothing: antialiased; }and
.widget_archive .widget-inner li a:before { font-family: FontAwesome; font-style: normal; speak: none; font-weight: 400; content: "\f187"; float: left; margin-left: -20px; -webkit-font-smoothing: antialiased; }if you delete or comment out those, the little icons should go away
Good luck,
Connie Green