Okay
  Public Ticket #3447888
mainly css
Closed

Comments

  • laura_br started the conversation

    Hi,

    I will appreciate your help with 3 issues:

    1) Main slider of home page: the font set uses uppercase letter to the initial letter of each word of the sentence. I need to leave the uppercase  only for the first word of the whole sentence. 

    2) In my blog entries I set up "bold" to some key words of the 2 articles I wrote but the words are normal, without the bold mark. So, the bold option is not working.

    3) Contact form at the bottom of each page:  i need to change the size the botton to let it looks similar to the rest of the bottoms of the website but i cannot find the ccs option to do it. 

    In addition to this, I'd like to set the same color as the background (blue) to the part where "ningun archivo seleccionado" is written, beside the part visitors have to attach a file.

    Thanks!
    Laura

     

  •  279
    Noah replied

    Hi Laura,

    1) Try the CSS:

    .nectar-split-heading h1{
        text-transform:none;
    }
    

    2) Could you point out the words you want to be bold on your articles here https://idosiertranslations.com/blog/

    3) To control the size of the contact form submit button use the following CSS:

    form.wpcf7-form input.wpcf7-form-control.wpcf7-submit{
        padding:10px!important;
        font-size:12px;
    }
    

    4) We could not find that part on the form "ningun archivo seleccionado". Could you give us a screenshot please?

    add it to salient \ general settings - css script related - custom css code.

    Thanks.

  • laura_br replied

    Sure,

    4155593064.png

    It is on the contact form, below on each page. "Ninguno archivo selec.".  Is it possible to get the same background color and the white font color?

  • laura_br replied

    Regarding the bold words, I set many, I detail you some of them:

    Traducción y localización: claves para una comunicación efectiva article:  https://idosiertranslations.com/diferencia-entre-traduccion-y-localizacion-de-contenido-claves-para-una-comunicacion-efectiva/

    In the first paragraph: traducción de contenido, traducción y localización de contenido.

    Second paragraph: traducción, twice.

    Third: localización de idiomas

    If I see the html,  they are marked as strong, but on page they are shown normal.

    In the other article, I have the same issue, I thing it could be a general set that affect all the articles.

  •  279
    Noah replied

    Hi there,

    1)  For bold words, due to the font in use the bold effect does not seem to apply easily and you might need to make the words slightly larger for the bold effect to appear better. You can do that with this bit of CSS:

    div.wpb_text_column.wpb_content_element div strong{
        font-size: 1.2em;
        font-weight: bolder;
    }
    body.single-post #page-header-bg h1, html body .row .col.section-title h1{
        font-weight:bolder;
    }

    add it to salient \ general settings - css script related - custom css code.

    2) As for styling that bit of text on the form at the bottom of your homepage, try the following CSS:

    form.wpcf7-form p label span.wpcf7-form-control-wrap input[type="file"]{
        background-color:#073096 !important;
        color:white !important;
    }
    

    Try that.