• Resolved robin.resine

    (@robinresine)


    Hi I tryed hiding desesperatly the title of each pages, but it also hides my breadcrumb when i do so, any advice pls ?

Viewing 8 replies - 1 through 8 (of 8 total)
  • What theme are you using? Where did you download it from?
    Always include as much information as possible

    Thread Starter robin.resine

    (@robinresine)

    Hi i am using the responsive theme, I got it from : http://wordpress.org/themes/responsive.
    Sorry if i did not include enough information as I was in a rush yesterday.
    I used the “disable title” plugin, it worked but that resulted in losing the breadcrumb ( since modifying the title by moving it or changing colors also changes the breadcrumb color/position )
    I don’t know which file to modify as I’m kinda new to wordpress, and I don’t know HTML/CSS/PHP even if I use some code, I can’t say i master the language =)
    I saw multiple solutions ( changing the content-page which the Responsive theme doesn’t have ) but I didn’t find anything that didn’t actually change the breadcrumb, it maybe is something about the h1 properties or something, I have really no idea.
    Thank you for your precious help.

    The Responsive Theme has its own custom CSS.

    Firebug it if I’m not correct, but just put something like this in your custom CSS:

    .entry-title {
    display:none;
    }

    That should do it, but if it doesn’t, try

    #entry-header.entry-title {
    display:none;
    }
    Thread Starter robin.resine

    (@robinresine)

    Thank you very much the first one did it !
    I actually saw this in another thread but I didn’t bother testing it since I tought it would affect the Breadcrumb too. ( and people actually said it didn’t work, probably another theme conflict )
    So thank you, it worked perfectly =)

    btw I have another little issue, I am trying to align text at the top of a cell ( so 1st row – 3 cells are images, 2nd row – 3 cells are text with the text sticked to the image from the 1st row )
    I tryed :

    <td valign="top">
    <td style="valign: top;">
    <td "valign: top;">
    <td valign=top>

    and so much more that are supposed to work, and i’m affraid this is another modification you have to change in the css but i’m not sure.
    I usually search a lot before having to ask in a forum but i’m really lost xD
    (I know i have to mark it as resolve but this is probably a really small and ridiculous problem, if you got any trail)
    Thanks again !

    Thread Starter robin.resine

    (@robinresine)

    Forget about my last request, works on dreamweaver, so it’s just another wordpress confligt, i’ll find another way around, have a nice day and thank you for your help !
    Robin

    Thread Starter robin.resine

    (@robinresine)

    I just had an issue that I didn’t notice, I would like the title of all the articles to stay, is there a display:true i could put for articles ?
    thank you =)

    We need to see a link to your site for help with things like this.

    it worked for me with retina theme.

    add this line to your home style.css as jasonpaulweber suggested:
    .entry-title {
    display:none;
    }

    and add to your content-page.php, i recommend to copy the content-page.php to your theme child and then to add the line.

    <div class=”breadcrumbs”>
    <img src=”http://i added a picture here.” width=”16″ height=”16″ class=”bread-icon”>
    <?php if(function_exists(‘bcn_display’))
    {
    bcn_display();
    }?>
    </div>

    after that all changes have to be made in the child style theme:
    i change the font and i added under line between the breadcrumbs and the content in the page:

    .breadcrumbs {
    margin: 0 0 20px 0;
    display: block;
    padding: 5px 5px 10px 5px;
    border-bottom: 1px solid #ddd;
    overflow: hidden;
    font-size: 15px;
    verical-align: middle;
    color: #888;
    }

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Hide Title and keep breadcrumb’ is closed to new replies.