werushka Posted March 17, 2008 Share Posted March 17, 2008 I have a cms code as follows <?php print $feed_icons; ?> <h1 class="page-title"><?php print $title ?></h1> This is printed on the browser as Feed Icon Title But I would like to edit the code so it prints like this Feed Icon Title I i do like this <h1 class="page-title"><?php print $feed_icons; ?><?php print $title ?></h1> The Feed Icon gets the look of the h1 tag and I don't want it I would really appreciate any feed back. Link to comment https://forums.phpfreaks.com/topic/96579-noob-allignment-question/ Share on other sites More sharing options...
bpops Posted March 17, 2008 Share Posted March 17, 2008 This is a CSS question. H1 is by default a block display. In your stylesheet, make h1{ display:inline; } And see if that helps. Link to comment https://forums.phpfreaks.com/topic/96579-noob-allignment-question/#findComment-494263 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.