Recent Topics

1 May 04, 2009 21:36    

My b2evolution Version: Not Entered

B2 2.4.6 / Windows vista

Hi,

I've set the top menu's css
div.top_menu ul
to no width, so that when a post or page is displayed, the top menu spreads onto the same width as the header.

So far, so good.

But when B2 displays from http.//xxxx.com/b2evolution/blogs/blog1.php
The last available post is displayed, and the menu width is narrowed to approx 60% of page width.

Now if I click on the post title, it is re displayed with a correct full width menu.

I'm just using some free html to display the top menu, very simple. Its just an <UL> and several <LI> and that's it!

If you wanna try, replace xxx.com by r*a*d*i*o*7*5*. com (get rid of the "*"! I've added them to prevent google from display this page!))

Any idea?

2 May 05, 2009 00:36

Chances are it is something in your css, but really if I have to figure out how to open your page I'm not going to. Just link it. It's a web page right? Just paste in the link.

3 May 05, 2009 00:55

mydomain.com wrote:

"My will is far simpler "what, you really have bu**er all money?" ... "yeah, but I've been to the shop and got some sugar ... hold this will you *passes coat* .... so, what were we going upstairs for?"

ooops, wrong paste, hang on :

mydomain.com/try2.ext wrote:

  <div id="credits">
	    <h2>Credits</h2>
	    <p>This README file was inspired by EdB, 
If you wish to show total appreciation for his genius then stop using mydomain.com on the forums,
it gets fucking annoying really fast
and is about as helpful as an ashtray on a bloody motorbike huh?</p>
	  </div>

¥

5 May 05, 2009 06:01

One reason it might be narrowed is because the CSS is told to narrow it...

div.top_menu ul {
/*    float:left; */
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    list-style-type:none;
    font-size: 10pt;
    font-variant:small-caps;
    font-family: Arial;
    font-weight:normal;
    background:#A11C1C;
    line-height:24px;
}

div.top_menu_narrow ul {
    width: 620px;
}

6 May 05, 2009 17:16

John nails it! Remove that "width: 620" bit and the red goes full width.

7 May 07, 2009 21:36

Thanks John, you've pointed it!


Form is loading...