How to remove user's blog from Drupal breadcrumb

3 replies
  • WEB DESIGN
  • |
How to remove a usersname from breadcrumb in drupal, I used the "flexible blog" but no luck

Check out the website below

Why you Should not go for Free Web Hosting | ClickPoint Solution

Home >>Blogs >>user's blog >>post1
#blog #breadcrumb #drupal #remove #user
  • Profile picture of the author mariya20
    Hello there,

    you can simply use the custom_breadcrumbs module for drupal..

    Goodluck
    {{ DiscussionBoard.errors[9631777].message }}
  • Profile picture of the author Hemanth Malli
    Using custom module for drupal is best option.
    Signature
    {{ DiscussionBoard.errors[9632626].message }}
  • Profile picture of the author Member8200
    you can manually remove this through css. Try this:

    1. look for the file 'style.css' and open the file.
    it should be located at: sites/all/themes/corporateclean/style.css


    open the file and find the css rule that looks like this:
    .breadcrumb {
    padding:0 10px 20px 0;
    }


    2. add the 'display:none;' css rule, this should be like this:
    .breadcrumb {
    padding:0 10px 20px 0;
    display: none;
    }



    this should solve the problem. Hope this helps, goodluck.
    {{ DiscussionBoard.errors[9632919].message }}

Trending Topics