Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #588575

    Hello there,

    1. I have accidentally made my footer font near invisible. I think it might be a colour setting but I can’t seem to find the right one in “General Styling > Footer”. I want it in black as it was before please?

    2. Also, can you tell me if there is a code on how to change the breadcrumbs font colour, hover colour and size?

    Regards

    #588601

    Hi,

    So long as you haven’t made too many changes to the theme options you can reset ALL options to default by clicking the bottom left button (it’ll be grayed out).

    As for the beadcrumb…..

    .title_container .main-title a {
      color:#EEBBEE !important;
      font-size:20px;
    }

    That code changes the title part of the breadcrumb

    .breadcrumb-trail, .trail-begin{
    font-size:20px;
    color:#eebbee!important;
    }
    .trail-begin:hover{
    color:yellow!important;
    }

    That code will change the size / color of the actual breadcrumb. .trail-begin is the class of the link and will change yellow in above example.
    Depending on how big you make the font you may need to pad down the breadcrumb so it looks neater.

    If that’s the case add this too…

    .breadcrumb-trail{
    padding-top:20px;
    }

    Hope that helps

    TJ

    #589362

    Hello there,

    Issue 1 sorted! It was under “Socket font colour”.

    Thanks!

    #590133

    Hi,

    Please try the following in Quick CSS under Enfold–>General Styling for colour and size:

    .avia-breadcrumbs a {
    color:red !important;
    font-size:20px !important;
    }

    Hover:

    .avia-breadcrumbs a:hover {
    color:green !important;
    }

    Best regards,
    Rikard

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