BRIXBOSTON
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Fixing WordPress
In reply to: Images Not ResizingThis was the culprit [CODE]#content img { margin: 0; height: auto; /*comment this out of TwentyTen*/ max-width: 540px; width: auto; /*comment this out of TwentyTen*/ }[/CODE]Firefox only issue it seems
Forum: Themes and Templates
In reply to: Adding DIV to TwentyTen Child Theme w/CSS & functions.phpI didn’t want to mess with wp_head()
I was wondering if there was another theme hook in TwentyTen other than wp_headThanks for the help btw.
I sort of asked the same thing in my most recent post (not exactly) but did you get the answer?
Forum: Themes and Templates
In reply to: Adding DIV to TwentyTen Child Theme w/CSS & functions.phpHi Esmi. Cool avatar!
I have already created and use a Child Theme.
I am wondering if this is possible without creating a header.php in my child theme and amending the DIV manually.
Can it be done in TwentyTen using a Plugin API Hook and functions.php?
<?php function icons_div() { echo '<div id=icons></div>' . "\n"; } add_action('wp_head', 'icons_div'); ?>^^^ But I cannot put a <DIV> in wp_head.
Viewing 4 replies - 1 through 4 (of 4 total)