Viewing 23 posts - 1 through 23 (of 23 total)
  • Author
    Posts
  • #170730

    Hello,

    I need help on a couple things on the enfold theme.

    1. Change color of header alternate nav text and hover color. Now the text and hover is the same as main header but it does not work with dark background color for the upper portion of the header. Pls provide css code.

    2. Change the color of just the tab itself and the text in the tab. This is not tab content container.. Pls provide css code.

    3. How do I make each individual tab and text of tab (not container) a different color in only one set of tabs on a page? Pls provide css code.

    The site is not live yet. ip address is 96.30.39.60.

    Thx, Seth

    #170926

    Hey Seth!

    We need a link of your website to better assist you with this issue, the IP you provided is displaying defaultwebpage.cgi.

    Regards,
    Josue

    #171071

    Hi Josue,
    The site exists, so the IP address is to a new site. To access the new site via IP address, your pc’s host file needs to contain the following

    96.30.39.60 amplidata.com www. amplidata.com

    Go to amplidata.com to see the site once, this is done.

    Regards,
    Seth

    #171072

    A bit more on what I need help with…

    There are several tab sets in the site.

    Under Features I’d like each tab to be a different color. ( I would also like the Icons on the home page to match these colors, is that possible?)

    Under Architecture, one set will be different, the other will be the same but I want to change from the default.

    Under Resources, they will all be the same color but different that the default.

    Thank You!

    Regards,
    Seth

    #172321

    Hi Seth!

    I’m not sure about the other support staff but doing support I will only visit sites with publicly set dns records. If you can put the site live we can assist with the start of the css and you can then customize as needed.

    The gist of which is you’ll wrap the content you want to customize in a color section and give that color section a unique ID using the field on the color section.

    Then turn on the class field for all avia elements so you’ll be able to target your content by #someid .someclass .the-avia-element-name . Where each of those is specific to your usage.

    You can turn on the custom class field by adding the following to your functions.php:
    add_theme_support('avia_template_builder_custom_css');

    Cheers!
    Devin

    #176098

    Hi,

    I still need an answer for one of my questions on how to change the header top bar text link color and hover color. The color for the links in top header bar needs to different than the main header text color.

    Thx,
    Seth

    #176136

    Hey!

    Please add following code to Quick CSS in Enfold theme options under Styling tab

    .phone-info a { color: red!important; }
    .phone-info a:hover { color: purple!important; }

    Cheers!
    Yigit

    #176395

    Hi Yigit,
    This did not work, there was no change to the text color on the top header bar. I added it to my custom css file not the quick css as I am documenting all the changes I make. Any other ideas?

    What it looks like is below. The background of the bar is dark blue, the social icon is gray, text link is gray, text hover is dark gray the vertical separators are white.

    social icon link | link | link | link

    Regards,
    Seth

    #176399

    Hi!

    Can you post a screenshot? This how it looks on my end http://i.imgur.com/A2fCqpX.jpg

    Best regards,
    Yigit

    #176458
    This reply has been marked as private.
    #176461
    This reply has been marked as private.
    #176463

    Hello!

    Please add this code instead of previous one

    .sub_menu>ul>li>a { color: red!important; }
    .sub_menu>ul>li>a:hover { color: purple!important; }

    Best regards,
    Yigit

    #176469
    This reply has been marked as private.
    #176472
    This reply has been marked as private.
    #176488

    Hi Yigit,
    The updated css worked for the text :) thank you, what can be done for the social icon color?

    see my screenshot post.

    Regards,
    Seth

    #176651

    Hello!

    And you can add following code for Social icons

    #top .social_bookmarks li a { color: red!important; }
    #top .social_bookmarks li a:hover { color: purple!important; }

    Cheers!
    Yigit

    #179869

    Hello,
    With the site now live for you to view, can you help with css for the following from my initial post in this thread?

    3. How do I make each individual tab and text of tab (not container) a different color in only one set of tabs on a page? Pls provide css code.

    Please see the page below that I want to make the tabs/toggles different colors.
    http://amplidata.com/amplistor/architecture-2/

    Thanks,
    Seth

    #180096

    Hi!

    If you want to change the style of a specific page or post, you can use the Google Chrome Inspect Element. Look for the unique css body class.

    On the example above, the page’s unique selector is .page-id-2251 but in your case the page id is .page-id-544. We can use it to change the element within that page.

    .page-id-544 .main_color .toggler, .main_color .toggle_content {
    background: blue;
    color: white;
    }
    
    .page-id-544 .main_color .toggler:hover {
    background: red;
    color: white;
    }

    Best regards,
    Ismael

    #180345

    Yes thanks, however, I want to change each toggle color on this page too so I think need to include the toggle id. Can you help me with that?

    Regards,
    Seth

    #180929

    Hi!

    You can add a unique selector for each Avia Elements. Edit functions.php, find this code:

    if(isset($avia_config['use_child_theme_functions_only'])) return;

    Below, add this code:

    add_theme_support('avia_template_builder_custom_css');

    Edit any avia elements like Text Block or Toggle then scroll below. Add a unique css selector on “Custom Css Class” field.

    Can you please post a screenshot of what you’re trying to do?

    Regards,
    Ismael

    #181530
    This reply has been marked as private.
    #181531
    This reply has been marked as private.
    #182186

    Hey!

    Still cannot see the screenshot. Please upload it on http://imgur.com/ or Dropbox and post the link here

    Cheers!
    Yigit

Viewing 23 posts - 1 through 23 (of 23 total)
  • The topic ‘How to change color of enfold tabs and alternate header text’ is closed to new replies.