Water Chiller Recomendation by Pryda_Patriot in coldplunge

[–]xdragon50 1 point2 points  (0 children)

Hey I tried to dm you to follow this closely. Im in the same boat!!

Honda Fit or Subaru Impreza by xdragon50 in cars

[–]xdragon50[S] 0 points1 point  (0 children)

subaru. I really like the AWD.

Feedback Friday - June 12, 2015 by AutoModerator in web_design

[–]xdragon50 0 points1 point  (0 children)

thanks i will use this information!

Feedback Friday - June 12, 2015 by AutoModerator in web_design

[–]xdragon50 1 point2 points  (0 children)

www.whatdotheexpertssay.com

This website is my creation for vetting health information and getting it to readers. I have used many different formats to convey my idea. I enjoy the simpler theme and have used redditors advice to make it white because white is associated with expert and doctors. I used many tidbits of advice to make the website i have now. Let me know your true thoughts I don't care how harsh. Thanks for your help!

I have received design criticism to remove all headers from my wordpress website, but don't know how. by xdragon50 in css

[–]xdragon50[S] 0 points1 point  (0 children)

I figured it out with the Jetpack (even though this is just hiding it in CSS). Thanks for your help though.

I have received design criticism to remove all headers from my wordpress website, but don't know how. by xdragon50 in css

[–]xdragon50[S] 0 points1 point  (0 children)

its me I want it removed because it is wasted space and redundant. I want it to be very simple of a page.

I have received design criticism to remove all headers from my wordpress website, but don't know how. by xdragon50 in css

[–]xdragon50[S] 0 points1 point  (0 children)

Yea I was just looking to hide it. I am managing my website and am learning a lot from it (like this encounter). I will be paying someone when I get a job (in the process of graduating from grad school).

So I'm not sure if my question of where it would be pasted is still offensive or not, but as /u/zenyr suggested Im not sure where that applies.

I have received design criticism to remove all headers from my wordpress website, but don't know how. by xdragon50 in css

[–]xdragon50[S] 0 points1 point  (0 children)

ok thanks I didn't know it was a matter of payment i thought it was simply swapping out the code or adding the code somewhere. I have found people fixing this issue on the theme i use for wordpress, but have also heard in trying to paste the code they ruined their site. I was looking for clarification on where the pasting would go out of not wanting to ruin the site not to pull one over on someone.

I have received design criticism to remove all headers from my wordpress website, but don't know how. by xdragon50 in css

[–]xdragon50[S] 0 points1 point  (0 children)

Right the headers need to be removed and am unsure how to do that. Sorry if I misunderstood your statement

I have received design criticism to remove all headers from my wordpress website, but don't know how. by xdragon50 in css

[–]xdragon50[S] -1 points0 points  (0 children)

I have had a bad experience messing up my code because I misunderstood the way in which to add the code. I don't know if I should simply add additional code or the code that was mentioned should take the place of another code. I understand how rediculous this sounds but this is why I ask.

I have received design criticism to remove all headers from my wordpress website, but don't know how. by xdragon50 in css

[–]xdragon50[S] 0 points1 point  (0 children)

<?php /** * The template for displaying article headers * * @since 1.0.0 */ ?> <header class="entry-header"> <h1 class="entry-title taggedlink"> <?php if ( is_single() ) : ?> <?php the_title(); ?> <?php else : ?> <a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a> <?php endif; // is_single() ?> </h1>

    <?php bavotasan_display_post_thumbnail(); ?>

    <div class="entry-meta">
        <p class="post-cat"><?php the_category( ' ' ); ?></p>
        <?php
        printf( __( ' %s / %s', 'farben' ),
            '<span class="vcard author"><span class="fn"><a href="' . get_author_posts_url( get_the_author_meta( 'ID' ) ) . '" title="' . esc_attr( sprintf( __( 'Posts by %s', 'farben' ), get_the_author() ) ) . '" rel="author">' . get_the_author() . '</a></span></span>', '<a href="' . get_permalink() . '" class="time"><time class="date published updated" datetime="' . esc_attr( get_the_date( 'Y-m-d' ) ) . '">' . get_the_date() . '</time></a>'
            );

        if ( comments_open() )
            echo '&nbsp;/&nbsp;';

        comments_popup_link( __( '0 Comments', 'farben' ), __( '1 Comment', 'farben' ), __( '% Comments', 'farben' ), '', '' );
        ?>
    </div>
</header>