Ask your WordPress questions! Pay money and get answers fast! Comodo Trusted Site Seal
Official PayPal Seal

Reformat front page of Auto-focus WordPress

  • SOLVED

I've never before worked with the Autofocus theme, but [[LINK href="http://seahorseartssalon.org/"]]this site was set up with Auto-focus.[[/LINK]] I want the site to [[LINK href="http://samanthalowe.com/"]]look more like Samantha Lowe's site[[/LINK]].

What file controls the size of the boxes? I want all of the boxes (links) to be the same size. Also, [[LINK href="http://seahorseartssalon.org/?p=7"]]on a page like this[[/LINK]], what template do I edit if I want to remove the large top image?

Answers (1)

2011-01-29

Sébastien | French WordpressDesigner answers:

the size of boxes is controled by wp-content/themes/autofocusplus/style.css
line 228 > 261


the size of the image in this boxes is controled by wp-content/themes/autofocusplus/functions.php line 235
add_image_size( 'front-page-thumbnail', 300, 300, true ); // Front Page thumbnail size


Sébastien | French WordpressDesigner comments:

<blockquote>Also, on a page like this, what template do I edit if I want to remove the large top image? </blockquote>

Open /wp-content/themes/thematic/library/extensions/content-extensions.php
(si in the theme thematic, not in the theme autofocus)
replace the line 497
thematic_postheader(); ?>
by
//thematic_postheader(); ?>
<h2 class="entry-title"><?php the_title() ?></h2>