Custom Home

Home Forums Evora – WordPress Theme Custom Home

This topic contains 3 replies, has 2 voices, and was last updated by  ab-themes 8 years, 7 months ago.

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

    repirespeixoto
    Participant

    Hi,

    I’m trying to update my page with some changes but i’ve looked at the style.css and i could’t find, don’t know if I’m looking in the wrong place! Can you help me to find where can I change the issues bellow?! http://www.cosurbano.com.br

    1- Change the color of the logo background and the text and hover colors (wishlist/login/card)

    2- Change the price size and the box transitions

    3- Move the button of the newsletter form (third footer) to the center and how to invert the letter and background colours

    4- Where can I add this social icons and what the code? (picture atacched)

    Thanks a lot

    #11013

    ab-themes
    Keymaster

    Hi,

    1.) Your logo doesn’t have background color.
    CSS code for text and hover colors (wishlist/login/card):

    #shop_links a:hover {
        color: #d8a9d5 !important;
    }

    2.) Change the price size:

    .woocommerce ul.products li.product .price, 
    .woocommerce-page ul.products li.product .price {
        font-size: 50px;
    }

    and this one is also for price size:

    .woocommerce ul.products li.product .price sup, 
    .woocommerce-page ul.products li.product .price sup {
        font-size: 29px;
    }

    how would you like to change the transition?

    3.) Move the button of the newsletter form (third footer) to the center:

    .widget_wysija_cont .wysija-submit {
        position: relative;
        left: 50%;
        margin-left: -55px;
    }

    it is hard to tell how to invert the letter and background colours without seeing the letter.

    4.) It seems that the image was not uploaded correctly. Can you upload it again?

    #11065

    repirespeixoto
    Participant

    Thank you for all the answers but still some misunderstanding..

    1) I didn’t mean the black part in my logo, I wanna change this acqua color in the top background (#96dad5)
    I wanna change the text color also

    2) I change the size but the value are not align, the numbers and the 00
    All the settings that i made looks good at the home page but when we go to the shop page looks bad, so much space between the price and the final string
    There’s any way to see the transition options?

    3) In which file and line is that? I could’t find

    4) I’m sending the image again!

    thanks

    #11076

    ab-themes
    Keymaster

    1.) Here is the CSS for acqua background color:

    #evora_main_header_bar {
        background: #95dad5;
    }

    and for the text color:

    #shop_links a {
        color: #2F3742;
    }

    2.) Here is the code that will aligne price numbers:

    span.amount sup {
        vertical-align: baseline;
    }

    for the transition there is a lot of CSS code, and we find it hard to explain like this and we can not change a lot of things about it.

    3.) The file is not important, just add the above css to the “Custom CSS” textarea.

    4.) Here is the code for that social icons:

    <div style="display:inline-block;padding-top:7px;">
    <!-- Place this tag where you want the +1 button to render. -->
    <div class="g-plusone" style="display:inline-block;" data-size="medium" data-href="http://envato.com"></div>
    
    <!-- Place this tag after the last +1 button tag. -->
    <script type="text/javascript">
      (function() {
        var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
        po.src = 'https://apis.google.com/js/platform.js';
        var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
      })();
    </script>
    </div>
    
    <div style="display:inline-block;top: -4px;position: relative;">
    <div id="fb-root"></div>
    <script>(function(d, s, id) {
      var js, fjs = d.getElementsByTagName(s)[0];
      if (d.getElementById(id)) return;
      js = d.createElement(s); js.id = id;
      js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
      fjs.parentNode.insertBefore(js, fjs);
    }(document, 'script', 'facebook-jssdk'));</script>
    
    <div class="fb-like" data-href="http://envato.com" data-layout="button_count" data-action="like" data-show-faces="false" data-share="false"></div>
    </div>
    

    and you can add this code in “Text” widget, see in the attached image how we made this.

Viewing 4 posts - 1 through 4 (of 4 total)

The topic ‘Custom Home’ is closed to new replies.