ofi Posted January 22, 2007 Share Posted January 22, 2007 Hihow can i remove the marker without loosing the space above, see image[img]http://www.simnet.is/hafdis/1.jpg[/img]here is the code[code]// Make navigationfunction fim_build_navigation($album = "", $image = "", $cat = ""){ $baseurl = get_url(""); $albumurl = get_url("album/$cat"); $t = fim_query_one_image(fim_get_image_id($image)); $imagetitle = ($t->title == "")?$image:$t->title; $string = "<h4 class='fim-nav'><a href='$baseurl'>".__('', 'fgallery')."</a>"; if($album && $image) $string .= " » <a href ='$albumurl'>$album</a>"; else $string .= " » $album"; if($image) $string .= " » $imagetitle"; $string .= "</h4>"; return $string;[/code]i did remove [code]»[/code] and i got this[img]http://www.simnet.is/hafdis/2.jpg[/img]so, how can i remove the the marker without loosing the space.thx Quote Link to comment Share on other sites More sharing options...
Nolongerused3921 Posted January 22, 2007 Share Posted January 22, 2007 Not really a php question, but have you tried <br />? Quote Link to comment Share on other sites More sharing options...
Jessica Posted January 22, 2007 Share Posted January 22, 2007 This is a CSS question. You probably need to adjust margin, padding, or line-height Quote Link to comment Share on other sites More sharing options...
Nolongerused3921 Posted January 22, 2007 Share Posted January 22, 2007 I concour and err... Try [code]<br />or<div style="padding-top: 5px;">Text</div>[/code](I had typed this in my previous post but had no idea that SMF parses br's Quote Link to comment Share on other sites More sharing options...
ofi Posted January 22, 2007 Author Share Posted January 22, 2007 found it, replaced » to thx Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.