Recent Topics

1 Aug 30, 2005 12:41    

Hello,

im using the skin kubrick2evo.

I want to change the "font style" of the navigation on my site. See the following pic:
http://www.snigles.de/img/snigles.jpg
How can I change the link "Blog" that it fits in the same style to my navigation
"Letzte Kommentare"
"ein paar Statistiken"
"Was ist ein Weblog?"
??

My _main.php look like this:
-----------------------------------------
<?php // BlogListL for aligned left, BlogListC for aligned center, BlogListR for aligned right ?>
<div id="BlogListC">
<?php require( dirname(__FILE__).'/_bloglist.php' ); ?>
</div>

<p><?php $Blog->disp( 'longdesc', 'htmlbody' ); ?></p>

<p class="center"><strong><?php posts_nav_link( ' | ', '< '.T_('vorige'), T_('nächste').' >' ); ?></strong></p>

<!--?php next_post(); // activate this if you want a link to the next post in single page mode ?-->

<!--?php previous_post(); // activate this if you want a link to the previous post in single page mode ?-->

<?php require( dirname(__FILE__).'/_calendar.php' ); // uncomment this line for the calendar ?><ul>
-------------------------------------

So long
joe

2 Aug 30, 2005 14:29

I think should do it. Open up Kubrick2evo.css and find this chunk of code:

/* Begin styles for bloglist */
#BlogListL, #BlogListC, #BlogListR {
margin : -2.5em 32px 0 32px;
/* for people with lots of blogs (more than one line of blog links in 
the header) you can uncomment this line instead so that your second 
line of blog links is 'inside' the blue header image area.  If you 
try -7.1em you will see that the bloglinks overlap the tagline. */
/* margin : -4.8em 32px 0 32px; */
border : 0px solid #000;
padding : 0;
}
#BlogListC {
text-align : center;
}
#BlogListR {
text-align : right;
}

ul#bloglist {
margin : 0 1px;
padding : 0;
list-style-type : none;
padding : .5ex 0;
}

ul#bloglist li {
background-color : #FFFFFF;
border : 1px solid #000;
display : inline;
padding : .5ex 1em;
line-height: 2.2em;
}

a.BlogButton, a.BlogButtonCurr {
font-weight : bold;
text-decoration : none;
}

a.BlogButton {
color : #000;
}

a.BlogButton:hover {
text-decoration : underline;
color : #9ae;
}

a.BlogButtonCurr, a.BlogButtonCurr:visited {
color : #78a;
}

a.BlogButtonCurr:hover {
text-decoration : underline;
color : #9ae;
}
/* End styles for bloglist */

Delete it. Replace it with:

#BlogListC {
font-weight: bold;
}

3 Aug 30, 2005 15:04

that sounds good to me ... just one small error
look @ http://www.snigles.de @ navigation "Blog"
how can I move it a little bit to the left, that it fits to the navigation?

regards
Joe

4 Aug 30, 2005 15:15

There's a <ul> tag right before the bloglist gets displayed. Move it to right after the bloglist get's displayed. In other words, change

<ul>
<?php // BlogListL for aligned left, BlogListC for aligned center, BlogListR for aligned right ?>
<div id="BlogListC">
<?php require( dirname(__FILE__).'/_bloglist.php' ); ?>
</div> 

to

<?php // BlogListL for aligned left, BlogListC for aligned center, BlogListR for aligned right ?>
<div id="BlogListC">
<?php require( dirname(__FILE__).'/_bloglist.php' ); ?>
</div> 
<ul>

5 Aug 30, 2005 16:13

..... it works :lol:

Kind regards
Joe


Form is loading...