Viewing 30 posts - 1 through 30 (of 38 total)
  • Author
    Posts
  • #918041

    I’m trying to have a content heading on one page be black on one page with a white background, but white on another page that has a black background. Is there a way to customize this?

    #918048

    On the Home page, at the bottom where the blog posts are, I’d like the heading to be white. On the other pages (blog page for example), I need the heading to be black.

    #918189

    Hi kpeffer,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    .avia-content-slider-inner h3.slide-entry-title.entry-title {
      color: #ccc;
    }
    .read-more-link a {
      color: #8ac3c3;
    }
    
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #918741

    I apologize for my lack of tech skill, but once I put it into quick css, what do I need to do to see the changes. So far nothing is happening. I changed the two color codes (ccc and 8ac3c3) and still nothing. If I do the second recommendation, where will I enter it?

    #918743

    Nevermind! I got it.

    Thank you Victoria!

    #919159

    Hi,

    Glad that you figured it out. Let us know if you need further assistance. :)

    Best regards,
    Nikko

    #919333

    Can you possibly tell me how I can adjust the justification (left, center, right) of the footer columns as well as adjust the footer widget padding?

    Thank you.

    #919373

    Hi,

    I have checked your site but I didn’t any footer widget, can you tell us what you are trying to achieve? maybe a mockup or screenshot of it, so we can picture it out and give you css code that should help.

    Best regards,
    Nikko

    #920005

    I decided to put the info I want in the socket for now. I’d like to adjust the spacing and bold some of the content. Is there a way to do that?

    #920007

    Hi,

    This would need to be done by targeting the specific areas and styling via css.

    Best regards,
    Jordan Shannon

    #920021

    Are there Quick CSS options for spacing out the wording, adding bold or increased font size, and making the email and phone number live links?

    #920031

    Hi,

    Yes, but those are very general so we would need to know what specific sections. As for the live links, those are coded using href tags to link them properly.

    Best regards,
    Jordan Shannon

    #920038

    I’d like to have the email and phone number centered within the socket.

    #920147

    Hi,

    Please try the following in Quick CSS under Enfold->General Styling:

    nav.sub_menu_socket {
        display: block !important;
        min-width: 100% !important;
    }
    
    #avia3-menu {
        display: table !important;
        margin: 0 auto !important;
    }

    Best regards,
    Rikard

    #920481

    That worked wonderfully to center the text, but now it looks like it is on a different line than the rest of the socket info. Can that be fixed?

    Also, do you have a quick css to bold the email and phone number?

    #920489

    Hi,

    Try adjusting the css to the following:

    #socket .sub_menu_socket{
    float:none!important;
    }
    
    nav.sub_menu_socket{
    margin-top:8px!important;
    }
    
    #avia3-menu.menu{
    font-weight:bold!important;
    }

    Best regards,
    Jordan Shannon

    #920492

    That changed it to bold, but now it isn’t centered and is still on the wrong line.

    #920501

    Hi,

    can you provide a screenshot?

    Best regards,
    Jordan Shannon

    #920524

    I attached the web address. I’m not seeing how to attach a photo.

    #920530

    Hi,

    You can use the following service to provide a screenshot:

    https://snag.gy/

    Best regards,
    Jordan Shannon

    #920564
    #920612

    Any luck?

    #921360

    Hi,

    Thank you for the info. Please try this css code.

    #socket .menu {
        margin-top: -1px;
    }
    

    Best regards,
    Ismael

    #921729

    Now they are all on the same line. Thank you! But they still aren’t centered.

    #922177

    Hi kpeffer,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    .avia3-menu {
      width: 30%; 
      margin: 0 auto;
    }
    
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #922469

    That finally worked. Thank you!

    #922550

    Hi,

    I’m glad Victoria was able to give you a solution. Did you need additional help on this topic or shall I close this thread?

    Best regards,
    Jordan Shannon

    #931715

    I’ve noticed that the above fix is not working correctly on mobile. Can you take a look at it and see if there is a Quick CSS fix to get it to line up properly on mobile?

    #931826

    Hi kpeffer,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    @media only screen and (max-width: 767px) {
      .avia3-menu {
          width: 100%;
      }
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #932094

    Thank you! If I want to remove the email and phone number from the socket, can you remind me how to do that? I am toying with having those items separate in a footer.

Viewing 30 posts - 1 through 30 (of 38 total)
  • The topic ‘Main Content Heading Color’ is closed to new replies.