Jump to content

Decarn

New Members
  • Posts

    6
  • Joined

  • Last visited

Everything posted by Decarn

  1. Thanks I tried to insert the "ccode in but my page could not load. Is my code correct? echo '<img "class='alignleft'" src="' . get_stylesheet_directory_uri() . '/images/default-image.jpg' . '" alt="Shares & Derivatives Left" />';
  2. Hi, Sorry if this is the code, how do I call alignleft in style.css for /images/default-image.jpg? add_filter( 'genesis_pre_get_image', 'category_featured_image_fallback' ); function category_featured_image_fallback() { if ( has_post_thumbnail()) : the_post_thumbnail( 'thumbnail', array( 'class' => 'alignleft' ) ); elseif ( in_category( 'shares-derivatives' ) ) : echo '<img src="' . get_stylesheet_directory_uri() . '/images/default-image.jpg' . '" alt="Shares & Derivatives Left" />'; elseif ( in_category( 'two' ) ) : echo '<img src="' . get_stylesheet_directory_uri() . '/images/category-two.png' . '" alt="Your Alt Text" />'; else: echo '<img src="' . get_stylesheet_directory_uri() . '/images/default-image.png' . '" alt="No Category" />'; endif; }
  3. Hi, I'm trying to combine the two codes below so that my images can be styled by CSS? echo '<img src="' . get_stylesheet_directory_uri() . '/images/category-two.png' . '" alt="Your Alt Text" />'; array( 'class' => 'alignleft' ) Thanks for your time.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.