breadcrumbs

Discussion in 'One Page Pro WordPress Theme' started by rexmanaster, Dec 18, 2016.

  1. rexmanaster

    rexmanaster Member

    Joined:
    Feb 18, 2012
    Messages:
    180
    Likes Received:
    4
    Hi,

    With respect to the breadcrumbs, please can you tell me how to:

    1. Change the font style, size, and color
    2. Change the background color and height

    Thanks,
    Rex
     
  2. shruti26

    shruti26 Guest

    Hi Rex,

    To change the font style, font size and font color with respect to Breadcrumbs just paste the code given below in Custom CSS section:
    (Customizing -> Theme Settings -> Custom Settings ) of your dashboard.

    Code:
    .homepage_nav_title a, .homepage_nav_title span, div#crumbs {
        color: black;
        font-size: 15px;
        font-style: italic;
    }
    
    To change the background color and height with respect to Breadcrumbs just paste the code given below in Custom CSS section:
    (Customizing -> Theme Settings -> Custom Settings ) of your dashboard.

    Code:
    .homepage_nav_title {
        background-color: #ef68a0;
        height: 60px;
    }
    
    Note: Please change the font color/size/style, background color/height as per your need.

    Hope this helps...!

    Thanks & Regards,
    Shruti Jain
    InkThemes.com
     
  3. rexmanaster

    rexmanaster Member

    Joined:
    Feb 18, 2012
    Messages:
    180
    Likes Received:
    4
    Thanks, Shruti. All worked well.

    I've played around a little with padding, but I'm unable to vertically align the breadcrumb text in the middle of the blue background. Please can you provide code? Best would be code to center align. See screenshot for clarification.

    Thanks,
    Rex
     

    Attached Files:

  4. shruti26

    shruti26 Guest

    Hi Rex,

    It sounds good that it worked well for you! :)

    Here is the next code which you want:

    To center align the text with respect to breadcrumbs just paste the code given below in Custom CSS section:
    (Customizing -> Theme Settings -> Custom Settings ) of your dashboard.

    Code:
    .homepage_nav_title{
        text-align: center;
    }
    
    Hope this helps...!

    Thanks & Regards,
    Shruti Jain
    InkThemes.com
     
  5. rexmanaster

    rexmanaster Member

    Joined:
    Feb 18, 2012
    Messages:
    180
    Likes Received:
    4
    hmmmm, not working.
     
    Last edited: Dec 20, 2016
  6. shruti26

    shruti26 Guest

    Hi Rex,

    Try using this code :

    Code:
    .homepage_nav_title{
        text-align: center !important;
    }
    
    If you still face any problem then send us your website WordPress login details at [email protected] along with the thread link.

    Your Website URL:
    WordPress Username:
    Password :


    We will do it for you.

    Looking forward to your reply.

    Thanks & Regards,
    Shruti Jain
    InkThemes.com
     
  7. rexmanaster

    rexmanaster Member

    Joined:
    Feb 18, 2012
    Messages:
    180
    Likes Received:
    4
    Hi Shruti,

    Unfortunately that code isn't working. I've tried several other things I found also.

    I am sending you the info via email.

    Thanks in advance.

    Best,
    Rex
     
  8. rexmanaster

    rexmanaster Member

    Joined:
    Feb 18, 2012
    Messages:
    180
    Likes Received:
    4
    Of course, Shruti, thanks!
     
  9. shruti26

    shruti26 Guest

    Hi Rex,

    You will be happy to know that we have aligned the text vertically in the center with respect to the breadcrumbs.

    We applied the following code:

    Code:
    div#crumbs {
        margin-top: -3px;
    }
    
    Have a look at it and acknowledge us for the same.

    Thanks & Regards,
    Shruti Jain
    InkThemes.com
     

Share This Page