Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #811007

    Hello,

    I have a few changes I’d like to make:

    1. I’d like to change the ‘/’ separator in the posts to ‘|’. Where can I find the file?

    2. I’d like to move the breadcrumbs on top or below the page title

    3. Tables have an odd and even style, I’d like to make it one style for all

    Thank you

    #812076

    Hey FlatText,

    I don’t see any breadcrumbs, could you give us a page with breadcrumbs and the tables?
    Here is a thread on breadcrumbs.

    Best regards,
    Victoria

    #813843

    Hi Victoria,

    I’ve set up a page just for breadcrumbs and a sample table. Link in private content.

    I’d like to remove all the shading from the tables, for both cells and font.

    For the breadcrumbs, I’d like to change the separator from ‘/’ to ‘>’ and move it so it’s above the page title. Not on the right.

    Thanks.

    #814080

    Hi,

    Did you try a solution from the thread I gave you in my prev reply?
    https://kriesi.at/support/topic/change-breadcrumb-separator/#post-312195
    Here is the code for the table and breadcrumbs

    
    .main_color tr:nth-child(odd), .main_color .pricing-table>li:nth-child(odd),
    .main_color table caption, .main_color tr:nth-child(even), .main_color .pricing-table>li:nth-child(even), #top .main_color  .avia-data-table.avia_pricing_minimal td {
    	    background: #fcfcfc;
    }
    .title_container .breadcrumb {
        position: initial;
        left: 0;
     }
    

    Best regards,
    Victoria

    #814140

    Hi Victoria,

    Thanks a lot. That table cells are now all one color.

    Regarding the breadcrumbs position, the code you gave me puts it below the page title. I know this doesn’t make sense, but the client wants it above the page title. I’m guessing the location to change that is the same file where the separators are found. Can you point to me where I can change the order so the breadcrumbs appear on top of the page title?

    Using the link you gave me to change the separator, when I remove class-breadcrumb.php from the main theme I get a 500 error on the website. I have pasted it in the child theme and included the require_once in the functions.php of the child theme too.

    #814197

    Hi,

    To change the breadcrumb to the top, just add the custom CSS code at Enfold Theme Options > General Styling > Quick CSS

    
    .title_container .breadcrumb {
       position: relative;
       bottom: 73px;
    }
    
    #top .title_container .container {
      padding-top: 45px !important;
    }
    

    Best regards,
    John Torvik

    #814280

    Hi John,

    Thanks for the suggestion but that adds top padding to all the page titles. Not all pages will have the breadcrumbs showing so this isn’t the best solution for me.

    Is there anyway the order of the elements can be changed from the theme files?

    #815604

    Hi,

    You can add the page id, before the code of John, and that way you can select to show the specific code only to the pages that is needed.

    Thank yu

    Best regards,
    Basilis

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.