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

    Hi, I installed the theme at http://bmi.i-visio.website and have several questions that i list below :

    I added specific fonts (and font-weight) in the functions.php of the child theme as you said in this post http://kriesi.at/documentation/enfold/register-additional-google-fonts-for-theme-options/ but how to choose between, for exemple 300,300italic,400,400italic,500,500italic,700,700italic ?
    To do this, it seems better to use the style.css in the child theme than the advanced style, non ?

    So how to specify our choice for H1 (or else) for each section (logo area, main content, alternate content, header, footer and socket) ?
    Same for active, focus and hover link (for the menu or other links of the main content).

    Other how-to questions :

    1. 1 Display a phone number and a special text on the left top menu
    2. 2 Add an access to member on the right of the top menu (as in your “Medical Demo”)
    3. 3 Display, the main menu on the left of the logo (not justify on the right)
    4. 4 Display the breadcrumb on the left, change the style (font, size, weight, etc.) and replace the “You are here” by an icon home for example.
    5. 4 Customize the style of the Accordion / togglecontainer, with the “plus” in #93275C, background color in black, the font in #93275C, a specific width, another rollover effect (from black to grey), etc.
      I found the Accordion/Toggle style in the shortcode.css but haven’t see reference to color.
    6. 5 Choose a different defaut color for the icon (#93275C for exemple)
    7. 6 Use our own icon (that we create) instead of the Fontello include in the theme. We have already add a selection from Fontello.com

    Thanks for your help and this amazong theme ;-)

    • This topic was modified 7 years, 3 months ago by I-Visio.
    #744405

    This is the code for the accordeons styling:

    // Accordions and Toggler //

    Not Active

    .main_color .toggler {
    background: #4880b4;
    color: white;
    }
    

    Hover

    .main_color .toggler:hover {
    color: black;
    background: #2c5b9c;
    }
    

    Active:

    .toggler, .main_color .toggler.activeTitle:hover {
    background: red;
    color: white;
    }

    Content:

    .main_color .toggle_content {
    background: #fcfcfc;
    }
    
    #745036

    Hi,
    Thanks for your reply.
    I’ve made some improvement since my last post.
    I will probably customize the style in the style.css located in the child theme folder.
    My questions form 1 to 3 are resolved.
    But I still have a few from my list.

    1. I have insert the code you gave me for Accordions and Toggler in the style.css of the child theme with no effect
    2. So how i specify the style for the H1 to H6 and others as <p> etc. in the style.css for main content or alternate content ?
    3. How can I display the breadcrumb on the left with an home icon instead of “You are here” ?
    4. If I use WP-Members, wich custom stylesheet should i indicate if I want the same display in all the website ?
    5. I still haven’t find where specify a default color for all the icons.
    #746231

    Hi,

    1. Try inserting the code in Quick CSS (located in Enfold > General Styling).
    2. Go to Enfold > Advanced Styling.
    3. Try adding this css code in Quick CSS:

    .title_container h1.main-title.entry-title {
        display: none;
    }
    
    .title_container .breadcrumb {
        right: auto;
        left: 20px;
    }
    
    span.trail-before:before {
        content: '\E821';
        font-family: 'entypo-fontello';
    }
    
    span.breadcrumb-title {
        display: none;
    }

    the code I gave would remove the title on the left to give way for the breadcrumb.
    4. Quick CSS in Enfold > General Styling.
    5. It uses the default color used for your main content/text.

    Hope this helps.

    Best regards,
    Nikko

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