Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'forum css'

Viewing 25 results - 1,601 through 1,625 (of 2,719 total)
  • Author
    Search Results
  • LiveFreeOrDie
    Participant

    I’m having a style problem with this as well. The forumhome only is taking 1/3 of the space counting sidebar, 1/2 the space it should. I tried editing the css but no luck. Any idea what class or id I should be editing?

    View post on imgur.com

    All other pages are the proper width, just now the forum home. Thoughts? thanks!

    #125395
    mintertweed
    Participant

    ‘Allo. I currently have an issue. I have a separate CSS document for each one of my pages. For my forum, I am using style-forum.css and it worked just fine. Then, I installed bbPress and reloaded my forum page. It seems to be pulling its styles from style.css rather than the aforementioned CSS document. I know I did it correctly because it was working just fine before I added bbPress as a plugin. But just to make sure, I deactivated bbPress and, sure enough, it began reading from style-forum.css again. How do I use bbPress with the correct CSS document? Thank you in advance!

    #125377
    spookyloot
    Participant

    Today when i tested my websites for flaws i saw that the visual editor box text color had changed into white instead of black. This made the text invisible unless you highlighted the written text.

    When i did some research on how to change it i saw that this problem goes back years.
    Most forum threads didn’t even got solved.

    I have found a simple solution for this problem.
    When i checked my source code i saw that the visual editor .css was located in public-html/wp-includes/css/editor.min.css

    Call it a lucky guess but when i searched for ‘white’ it got me to this part of the code:
    wp-editor-area{color:black}

    I changed it into wp-editor-area{color:white} and this solved my problem.

    I hope this helps allot of frustrated people!.

    #125376
    spookyloot
    Participant

    I found he solution for the white text in visual editor problem when using BBpress.
    Go to your ftp and open public-html/wp-includes/css/editor.min.css ( I found it viewing my site’s source code)

    You will see a whole bunch of code making it almost impossible to find the right part to change.
    Call it a lucky guess but when i searched the word ‘white’ i only found 1 code:
    -wp-editor-area{color:white}

    I changed it into black and this solved the white text problem!
    so just search for wp-editor-area{color:white} and change it into:
    -wp-editor-area{color:black}

    #125257
    SimonFullSteam
    Participant

    I’m trying to do something and have hit a wall.

    I want to have multiple “hub” pages on my site each with a custom menu that I’m serving using my themes slider.

    It all works great on the hub pages but forums are not pages of course, so I cannot get a slider at the top the same way I can on a page0.

    The forum index is ok but as soon as a forum or topic is clicked I lose any obvious way to serve my custom menu.

    Must haves;
    – Each hub has it’s own menu
    – the menu must exist on every hub child page and forum to allow navigation

    Is there any sensible way to do what I want?

    BBpress 2.1, Buddypress 1.6, WP 3.5, Dynamix theme
    I have HTML/css moderate skills, low php, but willing to get contractors for what I can’t do.

    #125197
    Shane Gowland
    Participant

    You can hide it with CSS. Try adding the following code to your theme’s style.css file.

    `.bbp-template-notice.info {
    visibility: hidden;
    height: 0px;
    }`

    #125065
    forsberg94
    Participant

    Hey bbPress.

    I need help to remove these – marked on picture.

    View post on imgur.com

    I found “bbp-forums-list” inside teh bbPress plugin’s css and made the display to none instead of incline. It really didn’t help much.

    Can you help me?

    Sunidaze
    Participant

    Or you can go through all of the theme files and remove get_sidebar.
    and
    The best way to remove a sidebar is probably to just use CSS to .sidebar { display:none }

    Will that remove the sidebar from the entire blog? I only want to remove the sidebar from the forum page, not the other pages…

    #124919
    Clicknathan
    Participant

    So I believe I’ve figured out a really simple solution to this all. My particular issue with the plugin in question in this thread is simply that it relies on users clicking a link to mark a post as read, which isn’t all that intuitive in my humblest of opinions.

    Using a built in BBPress function `echo bbp_get_topic_last_reply_url( $topic_id );` and some CSS, we can easily style unread threads.

    `echo bbp_get_topic_last_reply_url( $topic_id );` links to the latest reply in a given thread. So something like myforum.com/forum/topic/post-name/page/10/#postid-12345

    When a new reply is created, that last bit there becomes #postid-12346 and is therefore a new URL, so browsers will treat it as an unvisited link. Therefor, doing something like this gets the job done:

    `a:visited {color:red;}`

    For anyone who’d like more detail, I’ve written a complete post on exactly how to do this: http://clicknathan.com/web-design/bbpress-read-topic/

    It only involves changing one BBPress template file in your theme & adding a single line of code to your style.css file.

    #124520

    Topic: topics page style

    in forum Themes
    KittyBeth
    Participant

    Hi!
    I just updated to bbpress 2.2.3 I have buddypress using bbpress sitewide forums. Using current wordpress version with buddypress default theme and my own custom made child theme.

    Updating caused some style problems. I think I had edited some css and forgotten that I did. So I discovered I should copy bbpress.css into my theme. I have done this and have gotten rid of the awful bullets by setting #bbpress-forums to list-style:none.

    I need to align LI.bbp-topic-freshness to the right to get rid of a large margin being caused by it aligning center. I told it to align right and it didn’t cooperate! What should I try now????

    The site is http://rheum4us.org however the forum is private using the membership plugin.
    Thanks for any help!

    pdhuisman
    Participant

    I had the same problem, i resoved it by adding this code in the style.css of my twenty eleven child theme


    .forum #primary{
    width:70%;
    }

    .forum .entry-content{
    width:100%;
    }

    And then also:


    .topic #primary{
    width:70%;
    }

    .topic .entry-content{
    width:100%;
    }

    And finaly,


    .bbp-user-page #primary{
    width:70%;
    }

    .bbp-user-page .entry-content{
    width:100%;
    }

    That solved my problem. I run WP 3.5. and bbpress 2.2. Hope this helps.
    I also figured out how to change the page title and remove some space at the top. Let me knof if you are interrested.

    #124477
    common8308
    Participant

    So,, there’s no plan so far.. thanks for letting me know. 🙂
    I just decided to follow your advice and adjusted CSS to the img tags in the activity stream contents.
    Thank you for the fast reply!

    #124463

    No plans, but could be done. Since the BuddyPress activity streams contain full HTML in each item, it’s a bit of a mess to change the visual layout. You could use some targeted CSS to improve it, but until we move to having callbacks for the items, it’s pretty limited what customizations you can do.

    #124405

    Topic: Post Body Text Color

    in forum Themes
    rlrandolph
    Participant

    I cannot for the life of me figure out what CSS code is causing the text to be grey on the body section of a new forum post.

    Any help would be appreciated.

    http://troythunderbaseball.com/forums/forum/8u/

    Lynq
    Participant

    Hey all,

    I thought I would have a go at creating a quick and easy theme for people to get started using bbPress. This was built fairly quickly using one of my other themes (which are based off the default bbPress files).

    If you want to check it out then have a look at: http://www.epicwebs.co.uk/content/bbpress-theme-invision-or-phpbb-feel or check it out on github https://github.com/EpicWebs/bbPress-starter-theme-epicwebs.

    The theme allows you to get more of a phpBB or invision look to your forum. It uses the functions I posted previously on bbPress.org along with some css to get the forum looking nice by installing the theme. The forum should be pretty fluid so it will fit any width of site.

    Good luck, I hope this helps!

    #122839

    In reply to: Forum Icons ?

    anthonyluth09
    Participant

    How was this passed? just through the bbpress css or?

    #122743

    In reply to: Forum Icons ?

    Stephen Edgar
    Keymaster

    Yes… An entry in CSS for each forum

    #122742

    In reply to: Forum Icons ?

    sunnyt7
    Participant

    Sounds cool Darren.. definitely looking forward to see what it looks like.

    And Stephen, I’m guessing you have to manually create a CSS class for each forum?

    #122708
    Lynq
    Participant

    You could use…

    .bbp-content .entry-title { display: none; }

    in your css file.

    #122689

    In reply to: Forum Icons ?

    Stephen Edgar
    Keymaster

    Sounds great Darren would love to see it, feel free to Pimp your site here.

    A plugin would be cool and like Jared there is much on my plate at the moment.

    Similar to Martin’s method above I have been using a custom icon font and targeting each forum like so with CSS where in this case the forum id is 34.

    
    .bbp-forum-34 i:before {
      content: "\e112"; /* glyphicons_ */
    }
    
    #122571
    AllenPayne
    Participant

    I tried to use div.forums-topic-datetime with display: none; but i can’t get it to work. Can you please post the whole code? I’m fairly new to CSS.

    Regarding the PHP filers…I’m not sure how to do this either. Any help would be greatly appreciated.

    #122569
    rsanchez1
    Participant

    Can you get more specific with your CSS? By that, I mean just targeting the date instead of the whole freshness block. For example, I see on my bbPress installation that the date in the forum freshness is in a child div of li.bbp-forum-freshness, which in CSS would be div.forums-topic-datetime.

    If you are more comfortable with PHP and WordPress development the forum and topic freshness links do have filters:

    bbp_get_forum_freshness_link
    bbp_get_topic_freshness_link

    Both filters pass the link html and the forum/topic id to your callback function. You could then hook to these filters, and simply have your filter callback return an empty string.

    #122561
    AllenPayne
    Participant

    Hi everyone,

    I want to remove the last post date from my bbpress forum and topic pages:

    I want only this to show up:

    Freshness

    [AVATAR IMAGE] Username

    Basically i want to get rid of the date. I tried using CSS with this code:

    li.bbp-forum-freshness a,
    li.bbp-topic-freshness a{

    display: none;

    }

    But it hides both the date and the username.

    So, how can i hide only the date and leave the username?

    Please help.

    Martin ( Martin_C )
    Participant

    Hmm, tried overflow:auto on .bbp-user-section, but it didn’t work. The stuff I posted above worked for me at AppGlobe:

    Try it with firefox here:

    http://appglobe.com/forums/users/martin/topics/

    …I think I’ve added a width of 100% as well as W3c suggests.

     

    Martin ( Martin_C )
    Participant

    Thats strange, I checked out your profile topics page in firebug and added a float left at this section:

    #bbpress-forums ul.bbp-lead-topic, #bbpress-forums ul.bbp-topics, #bbpress-forums ul.bbp-forums, #bbpress-forums ul.bbp-replies {

    border: 1px solid #EEEEEE;
    clear: both;
    float: left; // Added this
    font-size: 12px;
    margin-bottom: 20px;
    overflow: hidden;

    }

    and when I did so it got visible.

    Try this instead at the bottom of your style.css:

    #bbpress-forums ul.bbp-topics { float: left !important; }

Viewing 25 results - 1,601 through 1,625 (of 2,719 total)
Skip to toolbar