Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • ah, the first problem how to enable the widget without showing up in the sidebar I solved 😀

    .sidebar .widget_alx_posts {
    display: none;
    }

    Damn it’s too late 😀 But still don’t know why it’s messing up the page :/

    Hey, do you mind to uplaod your index.php and the css you use? And how do you manage to just show the widgets in the end of your homepage http://thebigbrotherforum.com/test/ ? I can just use the widget shortcode if I also have the widget in other places at the page :/

    I use

    if ($i == 2) {
    echo ‘<div id=”my-widget”>’;
    echo do_shortcode ( ‘[widget id=”alxposts-2″]’ ), do_shortcode ( ‘[widget id=”alxposts-3″]’ ); // show the widget
    echo ‘</div>’;

    to show 2 posts next to each other. but they just mess up my template 🙁

    would be happy to hear from you!

    best wishes,
    g33kmonkey

    Thread Starter g33kmonkey

    (@g33kmonkey)

    Guess you can do this. I use a self made child theme, so it’s in my standard css file. But if you just modify the original hueman theme, you can just add this in the custom css
    😊

    Thread Starter g33kmonkey

    (@g33kmonkey)

    Perfect, I got it!

    Just have to add the same, but with display:none to the
    @media only screen and (max-width: 719px) {

    #nav-topbar .nav li.topbar-logo a,
    #nav-topbar .nav li.topbar-logo a:hover { displaycnone;}

    Can I add awesome fonts to the topbar too like this?

    Thread Starter g33kmonkey

    (@g33kmonkey)

    Hey bdbrown, thanks a lot!!!

    It seems to work. I just must figure out how to not display the logo in the menu from the smartphone, because this seems strange 😀

    I just must add the size from the logo in the css:

    #nav-topbar .nav li.topbar-logo a,
    #nav-topbar .nav li.topbar-logo a:hover {
      display: block;
      background-image: url('../geek/img/top_logo.png');
      background-repeat: no-repeat;
      text-indent: -9000px;
    width: 229px;
    height: auto;
    }

    This works for me, thx!!!

Viewing 5 replies - 1 through 5 (of 5 total)