Forum Replies Created

Viewing 30 posts - 64,261 through 64,290 (of 64,582 total)
  • Author
    Posts
  • in reply to: Does the contact form have a file submit? #119487

    Hi,

    You can style the Gravity Forms font with this

    .gform_wrapper {<br />
    font-family: Arial !important;<br />
    font-size: 14px !important;<br />
    color: red;<br />
    }

    Regards,
    Ismael

    in reply to: Pflichtfeld Checkbox #119368

    Hi,

    Can you give us a link to your contact page? You can actually target the checkbox then add a style to it when empty. Mine looks like this

    .error#element_avia_check_1 {
    border: 1px solid red;
    }

    This will only be applied when the user leave a required checkbox empty. You might need to add the style on each checkbox that you have.

    Regards,

    Ismael

    in reply to: Socket 540px #119092

    Hi,

    Sticky footers tends to break the responsiveness of the site. There are certain techniques that you can use to make a sticky footer. You might want to look into that. It means breaking the default layout of the theme though. In my honest opinion, who needs a blank page anyway?

    Regards,

    Ismael

    in reply to: Footer Content #115559

    Hey,

    @joe88. On Appearance > Widget, look for Footer – column1, Footer – column2, 3 then 4. Supply that with widgets after you imposed on Theme Options > Footer, and select 4 column footer widgets.

    Regards,

    Ismael

    in reply to: Icon List Size Adjustment pt. 2 (bumpy circle edges) #119383

    Hi,

    Glad we could help. :)

    Regards,

    Ismael

    in reply to: Logo #119478

    Hi,

    Can you give us a link to your website?

    What type of header are you using?

    Regards,

    Ismael

    in reply to: Enfold – Making Slab text headings responsive #119244

    Hi,

    It depends on what device you are trying to target. You only need this if you’re trying to target screens with 959px resolution and lower that includes iPad, iPhone and other mobile devices.

    /* Smaller than standard 960 (devices and browsers) */
    @media only screen and (max-width: 959px) {
    @font-face {
    font-family: 'BebasNeueRegular';
    src: url('http://localhost:8888/wordpress/wp-content/themes/enfold-child/fonts/BebasNeue-webfont.eot');
    src: url('http://localhost:8888/wordpress/wp-content/themes/enfold-child/fonts/BebasNeue-webfont.eot?#iefix') format('embedded-opentype'),
    url('http://localhost:8888/wordpress/wp-content/themes/enfold-child/fonts/BebasNeue-webfont.woff') format('woff'),
    url('http://localhost:8888/wordpress/wp-content/themes/enfold-child/fonts/BebasNeue-webfont.ttf') format('truetype'),
    url('http://localhost:8888/wordpress/wp-content/themes/enfold-child/fonts/BebasNeue-webfont.svg#BebasNeueRegular') format('svg');
    font-weight: normal;
    font-style: normal;
    }
    h6 {
    font-family: BebasNeueRegular, Geneva, Arial, Helvetica, sans-serif !important;
    font-size: 80pt !important;
    margin-bottom: 20px !important;
    letter-spacing: -0.0em !important;
    font-weight:200 !important;
    }
    }

    Regards,

    Ismael

    in reply to: Create Icon List or Icon Box with only a heading? #119468

    Hi,

    Instead of pressing the space bar try adding this code  &nbsp;

    Regards,

    Ismael

    in reply to: Avia Builder – Misbehaviour when editing content #119293

    Hi,

    I’m sorry but I’m not sure what is wrong with it even with the screenshot you provided. I tested the accordion on my end and it is working fine. Do you have Enfold 1.4?

    Regards,

    Ismael

    in reply to: Sidebar menu widget issue #119454

    Hi,

    Can you give us a link to the page with the sidebar issue?

    Regards,

    Ismael

    in reply to: Different color for top bar menu and menu hover #119444

    Hi,

    To change the background of the top header completely, you can use this

    #header_meta {
    background: red;
    }

    To change the color of the menu font use this.

    .header_color .sub_menu > ul > li > a {
    color: blue;
    }

    And the hover color, with this

    .header_color .sub_menu > ul > li > a:hover {
    color: black;
    }

    Change the color value.

    Regards,

    Ismael

    in reply to: Problem with Gravity Forms #119262

    Hi,

    Please send it on //…

    Include this thread on your email.

    Regards,
    Ismael

    in reply to: Remove caps in headings- Enfold Theme #119384

    Hi,

    I’m sorry but what do you mean by “caps” and what heading are you trying to change? Please give us a screenshot or give us a link to the page.

    Regards,

    Ismael

    in reply to: Icon List Size Adjustment pt. 2 (bumpy circle edges) #119381

    Hi,

    You’re welcome. :)

    Try to use this

    .avia-icon-list .iconlist_icon {
    border-radius: 300px;
    }

    You may want to see the borders clearly, test it with this. Adjust the border width.

    .avia-icon-list .iconlist_icon {
    order-width: 3px;
    }

    Regards,

    Ismael

    in reply to: Sidebar Latest Ports/Portfolio Thumbnails #119379

    Hi,

    Add this on your custom.css

    .news-thumb {
    border: none;
    }

    To resize the thumbnail, go to functions.php then find this code

    $avia_config['imgSize']['widget'] = array('width'=>36, 'height'=>36); // small preview pics eg sidebar news

    Add this on your custom.css. Change the width and height according to the thumbnail size then regenerate the thumbnails.

    .image_size_widget .news-thumb {
    height: 36px;
    width: 36px;
    }

    Regards,

    Ismael

    in reply to: Next and Prev Arrows #119373

    Hi,

    It should be there automatically, there is no option to turn it on or off but you can hide it through css. Maybe the slider is covering it. Try this on your custom.css

    #top .avia-post-nav {
    z-index: 9999;
    display: block;
    }

    Regards,

    Ismael

    in reply to: Insert a new font #119439

    Hey,

    Glad it worked. ;)

    Regards,

    Ismael

    in reply to: Socket 540px #119090

    Hi,

    Try this on your custom.css

    html{
    background-color: red;
    }

    Leave a page without content and display the socket without the footer. You’ll see what Devin is trying to say. You need to push the socket with contents.

    Regards,

    Ismael

    in reply to: Remove extra whitespace in the header area #118767

    Hi,

    This won’t work on fixed headers.

    Regards,

    Ismael

    Hi,

    Add this on your custom.css

    .template-page .big-preview {
    display: block;
    padding: 0 0 10px 0px;
    }

    Regards,

    Ismael

    in reply to: Pflichtfeld Checkbox #119366

    Hi,

    Edit the field with the checkbox, look for Form Element Validation, select is not empty.

    Regards,

    Ismael

    in reply to: Images and Text jumps when moused over #118384

    Hi,

    Please use this instead. It will render a transparent box and leave the circle behind. :)

    .image-overlay.overlay-type-extern {
    background: transparent;
    }

    Regards,

    Ismael

    in reply to: Enfold – Making Slab text headings responsive #119242

    Hi,

    For example, you want to apply the style when viewing on a mobile device, you should use this

    /* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
    @media only screen and (max-width: 479px) {

    @font-face {
    font-family: 'BebasNeueRegular';
    src: url('http://localhost:8888/wordpress/wp-content/themes/enfold-child/fonts/BebasNeue-webfont.eot');
    src: url('http://localhost:8888/wordpress/wp-content/themes/enfold-child/fonts/BebasNeue-webfont.eot?#iefix') format('embedded-opentype'),
    url('http://localhost:8888/wordpress/wp-content/themes/enfold-child/fonts/BebasNeue-webfont.woff') format('woff'),
    url('http://localhost:8888/wordpress/wp-content/themes/enfold-child/fonts/BebasNeue-webfont.ttf') format('truetype'),
    url('http://localhost:8888/wordpress/wp-content/themes/enfold-child/fonts/BebasNeue-webfont.svg#BebasNeueRegular') format('svg');
    font-weight: normal;
    font-style: normal;
    }
    h6 {
    font-family: BebasNeueRegular, Geneva, Arial, Helvetica, sans-serif !important;
    font-size: 90pt !important;
    letter-spacing: -0.0em !important;
    font-weight:200 !important;
    }

    }

    The font will only apply if the user is viewing on a mobile device.

    Regards,

    Ismael

    Hi,

    I believe you edit his through the text editor. Add a unique class. Example

    Number 1.

    <strong class="blue_color">1. <a title="1. Talk to your partner, friends and family members" href="http://babyblueshelp.com/1-talk-to-your-partner-friends-and-family-members/">Talk to your partner, friends and family members</a>. </strong>

    Number 2.

    <strong class="red_color">3. Sleep when your baby sleeps.</strong>

    Then style it on your custom.css

    strong.blue_color {
    color: blue;
    }

    strong.red_color {
    color: red;
    }

    Regards,

    Ismael

    in reply to: Footer Decoration Lines & Portfolio styling #119036

    Hi,

    Please try this

    .widgettitle {
    border-bottom: 1px dotted white;
    padding-bottom: 10px;
    }

    It will create a dotted line below the widget title. For more border styles, please refer to this link

    http://www.w3schools.com/css/css_border.asp

    Regards,

    Ismael

    in reply to: Accordion Sorting Setting #119269

    Hi,

    Click on the Toggles. At the very bottom look for the Toggle Sorting Tags field. Insert tags.

    Regards,

    Ismael

    in reply to: Layer Slider **ISSUES** #119273

    Hi,

    I’m sorry that you feel that way. Please, if you can summon a little more of your patience, watch this video http://www.youtube.com/watch?v=ZY9SxVyugx4. Maybe it’ll help you better understand how the slider works.

    Please let us know if it helps. It would be a lot easier if you have the site online so that we can help you set the slider up.

    Cheers,

    Ismael

    in reply to: How to decrease whitespace between buttons / columns #119302

    Hi,

    Use this

    .page-id-1735 .column-top-margin {
    margin-top: 20px;
    }

    Regards,

    Ismael

    in reply to: Portfolio design aspect #118990

    Hi,

    Send the login details on ///.

    Include the issues you think you have on your installation and this thread on your email.

    Regards,
    Ismael

    in reply to: Problem with Gravity Forms #119260

    Hi,

    I tested the plugin on my site and the forms look ok. Can you give us a link to your website? We can probably fix it with css.

    Regards,

    Ismael

Viewing 30 posts - 64,261 through 64,290 (of 64,582 total)