Viewing 30 results - 16,171 through 16,200 (of 18,728 total)
  • Author
    Search Results
  • onegirlrtw
    Participant

    How to increase font size and change font style of the text in header drop down menu (sub menus)?

    #288421

    In reply to: Gravity Forms Styling

    Hi!

    Please add following code to Quick CSS

    .gform_wrapper h3.gform_title { color: red; }
    #top .gform_page_footer .button { font-size: 18px; }

    Best regards,
    Yigit

    Hi jasonmwestbrook!

    Thank you for using our theme.

    Put in custom.css or Quick CSS the following and change the value of px:

    
    #top .phone-info {
    font-size: 30px;
    }
    

    Best regards,
    Günter

    #288350

    Hi!

    You could try reducing its font size:

    @media only screen and (max-width: 480px) {
    #socket .container {
        width: 100%;
        font-size: 9px;
    }
    }

    To remove that space:

    @media only screen and (max-width: 480px) {
    #top {
        overflow: visible !important;
    }
    }

    Best regards,
    Josue

    #288322

    Hi:

    I managed to get control of all the blog posts title and text, (body copy,) styles by using the “Quick CSS” feature. The code you supplied above did not work in the custom.css or the layout.css. None of the css files, which I edited directly, had even the slightest effect on the font styling. I find that the custom.css does not overwrite in any cases. I can only assume there is code I do not know about that is overriding it all within the heiarchy somewhere. Firebug and Chrome’s developer’s tools were not much help as I could not get granular enough to spot the specific css selectors–but I am not expert with those tools. Here is the css I used in the “Quick css” slot:

    .template-blog .post-title {
    font-size: 23px;
    padding: 0px 0;
    max-width: 800px;
    margin:-20 auto;
    }

    .template-blog p {
    font-size: 13px;
    line-height: 22px;
    color: #666666;
    font-weight: normal;
    }

    It works globally on all blog posts, but leaves all other pages alone. There was an indent on the title which I could not spot the source of, so I had to apply a minus margin to justify it left. It easily gives me control over the posts font styling.

    I also discovered that the custom blog layout must be selected under the “blog style” for the “excerpt with read-more link” function to work when using a blog content container within the page.

    Thanks

    – Michael

    Jason Westbrook
    Participant

    How do I increase the font size of that optional top row area with the phone number and social icons?

    Thanks.

    Try with this code (i modified what you already have):

    #advanced_menu_toggle { top: 120%; line-height: 12px; right: 45%; }
    #advanced_menu_toggle:before { content: 'Main Menu'; font-size: 12px }
    
    #287958

    In reply to: Footer Text on iPad

    Hi!

    Yes, please replace the code with following one

    @media only screen and (max-width: 768px) {
    section#text-4 * { font-size: 13px; }}

    Regards,
    Yigit

    #287937

    Hi!

    Following code blocks

    span.avia-menu-text {
    font-size: 16px !important;
    }

    You can remove it and set font sizes of the menu items in Advanced Styling tab :)

    Best regards,
    Yigit

    #287936

    In reply to: Gravity Forms Styling

    Hi kathrynmichaud!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed
    1-

    .gform_wrapper .gf_step { color: red; }

    2-

    #top .input-text, #top input[type="text"], #top input[type="input"], #top input[type="password"], #top input[type="email"], #top input[type="number"], #top input[type="url"], #top input[type="tel"], #top input[type="search"], #top textarea, #top select { border-color: red !important; }

    3-

    #top .main_color .input-text, #top .main_color input[type='text'], #top .main_color input[type='input'], #top .main_color input[type='password'], #top .main_color input[type='email'], #top .main_color input[type='number'], #top .main_color input[type='url'], #top .main_color input[type='tel'], #top .main_color input[type='search'], #top .main_color textarea, #top .main_color select { color: blue; font-size: 18px; }

    Regards,
    Yigit

    #287934

    Hi Yigit,

    i tried this but no changes in the font size. ( Line Hight works if i change it.)

    Maybe a codeline in the quick css blocks this?

    Thanks

    #287928
    simonac
    Participant

    Hi,
    i edited the menu couple month ago before the theme update added these options.

    Now i do not know how to change the font size of the submenu.

    Thanks Simon

    #287888

    In reply to: Footer Text on iPad

    Hey robertwood04!

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

    section#text-4 * {
    font-size: 13px;
    }

    Cheers!
    Yigit

    #287887

    Hi!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed

    #advanced_menu_toggle, #advanced_menu_hide { top: 120%; }
    #advanced_menu_toggle:before { content: 'Menu'; font-size: 12px; }

    Cheers!
    Yigit

    #287826

    Hey!

    Is there any other information for us to go on other than it looks different? Is it something specific like font, color, sizes or layout elements? What browser is it on the other computers and what versions of the browser(s) as well as operating system is it?

    The more information we have to try and duplicate it the more likely we are to find the cause of the visual errors.

    Cheers!
    Devin

    #287812

    Hi Denis!

    Try using !important:

    .textwidget h3 {font-size: 20px; background:grey; color: white;
    margin-left:-5px; margin-right:-5px; padding:5px !important; }

    Regards,
    Josue

    #287811

    Hey Mkieling!

    Thank you for using the theme!

    Please use this on Quick CSS or custom.css:

    .footer_color a,  .footer_color p, .footer_color {
    font-size: 13px;
    }

    Regards,
    Ismael

    #287798

    Hey blaircomm!

    Thank you for using the theme.

    You can use the plugin firebug or google chrome’s developer tool to get the right css selectors. You can use it directly on custom.css file. For example, if you want to change the body text of single post, use this:

    .single .template-blog p {
    font-size: 18px;
    color: red;
    font-weight: bold;
    }

    Use this for the post title:

    #top .fullsize .template-blog .post-title {
    text-align: center;
    font-size: 50px;
    padding: 15px 0;
    max-width: 800px;
    margin: 0 auto;
    }

    Change the round container using this:

    span.rounded-container {
    border-radius: 0;
    }
    

    In case you have any questions, please take some time to review all of the resources in the Theme Documentation as a lot of basic stuff like theme installation, css snippets etc are already available in there with better explanation and awesomeness. Watch some of our Video Tutorials to learn more about the different aspect of the theme. You can also search the forums for queries that has been answered before that might be related to your problem.

    If you find that you still have questions after taking the time on our documentations, don’t hesitate to let us know and we will be happy to assist you. If you have any requests or you feel like giving us a warm hug? You can definitely post it on our Feature Requests page. :)

    Best regards,
    Ismael

    #287794
    denisrowe
    Participant

    I am trying to style the form widget and nearly there. However the “padding” is not working for above the H3, works on Left, Right & bottom.
    Note space above the “Contact Us” fields is not getting altered. Page made private
    I am using this CSS

    .textwidget h3 {font-size: 20px; background:grey; color: white;
    margin-left:-5px; margin-right:-5px; padding:5px; }

    #top fieldset {margin-bottom: 2px; }
    #top .avia_ajax_form { border-style: solid; border-width: 1px; padding: 5px;
    padding-top: 0px; padding-bottom: 0px; !important; }

    .avia_ajax_form label {margin-top: -12px; margin-bottom: 0px; !important; }
    .avia_ajax_form textarea { height: 15px; margin-bottom: -15px !important; }
    .avia_ajax_form .text_input{ text-align: left; }
    .avia_ajax_form .button {padding: 5px; border-radius: 3px; border-bottom-width: 1px; border-bottom-style: solid; font-weight: bold; font-size: 14px; }
    #top .avia_ajax_form .text_input, #top .avia_ajax_form .select, #top .avia_ajax_form .text_area{
    width:98%; display:inline; border-radius: 2px; margin: 0px; padding: 0px;
    }

    #287750

    Hey!

    You’d need to generate the shortcodes to use in a separate Page (using the magic wand tool). For example, here’s an icon element (phone) in shortcode format:

    [av_font_icon icon='ue854' font='entypo-fontello' style='' caption='' link='' linktarget='' color='' size='40px' position='left'][/av_font_icon]

    Regards,
    Josue

    #287718
    blaircomm
    Participant

    Hi:

    I want to style the head and text, (i.e. post title and body copy), for just the posts in the blog. I want to have control over the size, font, color, spacing, and so on without effecting anything else globally.

    What are the specific CSS lines that will do that and where can I find them, (are they in “layout.css”)?

    Then, if I copy that css into the “custom.css” file, will it give me the control I want by overriding the “layput.css” without modifying the “layout.css”?

    Also…is there any way to change the round Gravatar in the multi-user blog to another shape like a square or square with rounded corners? I know the code, just not where to lines are that control the function. I write css, but not php.

    Thanks.

    #287711
    Mkieling
    Participant

    Dear support member,

    I’d like to make font size one size smaller in my footer widgets. Not the titles, but the font below the title. But I want the fonts in the rest of the website to remain the same. How can this be achieved, please?

    http://www.step1.com.br

    Many thanks,

    Miguel Kieling

    #287594

    Hey!

    This code will affect the paragraphs of bbPress pages:

    .bbpress p {
        font-size: 22px;
        line-height: 28px;
    }

    Adjust as needed.

    Cheers! 
    Josue

    #287550
    bdaily
    Participant

    Hey,

    I would like to adjust the font sizes in the Forum section of my site. Iim noticing that I can use the enfold theme options to make changes to the font sizes throughout the theme but does not seem to effect forum pages.

    Is there some CSS code that will allow me to change the font size in my discussion forums pages?

    Thanks,
    BD

    Hey!

    Ja, die Reihenfolge bzw Ausgabe des Textes können wir mit CSS leider nicht beeinflussen. Diese Probleme müssen von MarketPress behoben werden. Ich werden den Code mit:

    
    #top .products .woocommerce_de_versandkosten{
    font-size: 0.65em;
    }
    
    #top  .products .woocommerce_de_versandkosten a{
    display: inline;
    }
    

    in das nächste Update übernehmen – dann sind die Kategorie-Seiten vom Design her gleich.

    Best regards,
    Peter

    Hey!

    Versuche bitte diesen Code in das Quick CSS Feld einzufügen – wenn er den Fehler behebt baue ich diesen in das nächste Update ein:

    
    .upsells .products .woocommerce_de_versandkosten, .related .products .woocommerce_de_versandkosten{
    font-size: 0.65em;
    }
    
    .upsells .products .woocommerce_de_versandkosten a, .related .products .woocommerce_de_versandkosten a{
    display: inline;
    }
    

    Cheers!
    Peter

    #287422

    Hey!

    Try adding this code to the Quick CSS:

    @media only screen and (max-width: 767px) {
    h1 { font-size: 22px !important; }
    }

    Cheers! 
    Josue

    #287417

    In reply to: 2 nd navigation

    Hey Frederic!

    I guess you are referring to the header meta, try adding this code to the Quick CSS:

    #header_meta, #header_meta .container{
        min-height: 50px;
    }
    .sub_menu li{
        line-height: 25px;
        font-size: 16px;
    }

    Cheers!
    Josue

    #287394
    General_B
    Participant

    Hello, I would like to know how to change the “font color” for the “image caption” on the image element [ layout builder > media elements > image ] ? I see an option for the font size, but there isn’t anything to change the color.

    Someone asked this on the support, but was directed to this support forum…and I cant find it ANYWHERE!

    On a side note, is there anyway to also change the color with the same element, of the dark opaque overlay when the mouse hovers over the image?

    Heres the cs I’ve added in the quick css. I bolded 2 lines. Could they be causing a problem?

    #header .submenu {

    background: none transparent;

    }
    .tablepress-id-N tbody td {
    font-family: Josefin Slab;
    font-size: 16px;
    color: #000000;
    }

    h1, h2, h3, h4, h5, h6 { font-weight: bold!important; }

    #avia-menu li:first-child a {
    border-left: 0 !important;
    }
    #avia-menu li:last-child a {
    border-right: 0 !important;
    }

    #footer .social_bookmarks li {
    clear: none!important;
    }

    #footer div .av_one_half:nth-child(1) { width: 38%; }
    #footer div .av_one_half:nth-child(2) { width: 58%; margin-left: 4%; }

    .logo img, #top .logo, .logo a, #header_main .container { width: 100%; }
    .html_header_top.html_logo_relative .logo {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    transform: none;
    }

    #main .container_wrap .container main, #main .container_wrap .container {
    max-width: 890px;
    }
    @media only screen and (max-width: 989px) {
    .avia-menu-text {
    font-size: 9px !important;
    }
    }

    .main_menu { center: 15%; }

    .boxed .container {
    margin: 0 auto !important;
    }

    @media only screen and (min-width: 768px) and (max-width: 989px) {
    #header_main { max-height: 140px; }
    }

    #advanced_menu_toggle, #advanced_menu_hide {
    color: gray;
    }

    #advanced_menu_toggle, #advanced_menu_hide {
    color: white;
    background: #068ca0;
    }

Viewing 30 results - 16,171 through 16,200 (of 18,728 total)