Forum Replies Created
-
AuthorPosts
-
Hi Lexie,
To edit the texts, open /includes/comments.php and look for lines 166-167.
You can add the link to the comment form in the same file too, try putting something like this around line 67:
<a href="#respond">Comment form</a>
This code will remove the white space (Quick CSS):
#respond { margin-top: 0 !important; }
The you might also like gets filled with related posts, the relationship between posts is based on tags, you can disable it if you want opening single.php and removing line 52.
Regards,
JosueHi,
Does it happen with the default WordPress theme?
Please understand that the support we offer doesn’t cover third-party software debugging/customization.
Cheers!
JosueFebruary 1, 2014 at 11:45 pm in reply to: How do I accommodate a larger depth logo in the header #218301Hi Paul!
Post the screenshot of what you want to achieve, also a link to the website will be helpful.
Best regards,
JosueHi!
Try re-installing the whole theme via FTP.
Regards,
JosueHey Gracezena!
Add this to your functions.php file (at the end):
add_filter( 'wp_nav_menu_items', 'avia_append_paypal', 10, 2 ); function avia_append_paypal ( $items, $args ) { if ((is_object($args) && $args->theme_location == 'avia') || (is_string($args) && $args = "fallback_menu")) { global $avia_config; ob_start(); ?> <!-- Your PayPal HTML goes here --> <img src="_PAYPAL_BUTTON_URL_IMG_" alt=""> <?php $paypal_link = ob_get_clean(); $items .= '<li id="menu-item-paypal" class="noMobile menu-item">'.$paypal_link.'</li>'; } return $items; }
Cheers!
JosueHi,
Can you post the link to your website please?
Regards,
JosueWe looking forward to hearing from you :)
Regards,
JosueHey!
That’s expected, as there is no Menu, a fallback Menu is being called. You need to create a new Menu and assign it as the primary Menu in Menu locations.
Add these codes in the Quick CSS for 3 and 4:
.social_bookmarks a { font-size: 20px !important; } .logo img { height: 100% !important; } .bottom_nav_header.social_header #header_main .container { height: 149px !important; }
Cheers!
JosueHi!
This plugin will help you set the permalinks the way you want (i tested locally and it worked with Enfold portfolio items):
http://wordpress.org/plugins/custom-permalinks/Please be respectful with the support staff, that attitude won’t get you anywhere.
Best regards,
JosueHi!
That’s expected, if you set a Page to Blank template, the boxed layout won’t work.
However, here’s a trick, i added this code to the Quick CSS:
.page-id-1248 #header, .page-id-1248 #footer{ display: none; } .page-id-1248 #main { padding-top: 0 !important; margin-top: 88px !important; }
That will hide the header and footer in that specific Page, that way you don’t need to set it as a Blank template, result:
http://hope.makovei.me/wp/pages/blank/coming-soon/Cheers!
Josue-
This reply was modified 11 years, 1 month ago by
Josue.
Hi,
Can you post the link to the actual Page please?
Regards,
JosueHi,
Can you post the link to your website please?
Regards,
JosueHi!
You can edit your menu (1-2) in Appearance > Menu.
For 3-4, please provide us with a link to your website.
Best regards,
JosueHey!
Try adding this code to the Quick CSS:
.breadcrumb-trail{ display: none; }
Cheers!
JosueHey!
Try adding this code to the Quick CSS:
.button{ background: red !important; }
Change ‘red’ by the desired color.
Cheers!
JosueJanuary 31, 2014 at 12:55 am in reply to: Symbols are not shown properly with Firefox on my Russian Page #217232Done.
Cheers!
JosueHi!
The base file still has those two lines (width: auto and height: auto).
Regards,
Josue-
This reply was modified 11 years, 6 months ago by
Josue.
January 30, 2014 at 2:22 am in reply to: Own template name + other templates with same editor? #216734Hi!
Yes, you can name the folder whatever you like (parent or child theme).
Regards,
JosueHey!
Yes, there is something interfering, a style declared by the theme, but you can disable it if you want, open css/base.css and look for the images section, around line 147:
img, a img { border:none; padding: 0; margin:0; display:inline-block; max-width: 100%; height:auto; width:auto; image-rendering: optimizeQuality; }
Change it to:
img, a img { border:none; padding: 0; margin:0; display:inline-block; max-width: 100%; image-rendering: optimizeQuality; }
Regards,
JosueHey!
Try adding this code to the Quick CSS:
.wp-image-2791 { width: 144px; height: 58px; }
Cheers!
JosueHi,
Can you create an administrator account and post it here as a private reply?
Regards,
JosueHi,
Can you post the link to the actual Page please?
Regards,
JosueYou are welcome, glad we could help :)
Regards,
JosueHey!
Try adding this code to the Quick CSS:
.portfolio-preview-image { width: 39% !important; } .portfolio-preview-content { width: 61% !important; }
Cheers!
JosueJanuary 29, 2014 at 6:51 pm in reply to: how to replace an fontello Icon for an own customized icon #216543You are welcome, glad we could help :)
Regards,
JosueJanuary 29, 2014 at 6:31 pm in reply to: how to replace an fontello Icon for an own customized icon #216536Hi!
This will do it:
.socket_color .avia-icon-list .iconlist_icon { background: white; }
Best regards,
JosueJanuary 29, 2014 at 5:56 pm in reply to: how to do rounded corners for the content area and menu #216514Hey!
Try adding this code to the Quick CSS:
.avia-section.main_color, #avia-menu{ border-radius: 20px; -webkit-border-radius: 20px; -moz-border-radius: 20px; } #avia-menu > li:first-child a{ border-left: 0; } #avia-menu > li:last-child a{ border-right: 0; }
Result:
Cheers!
JosueJanuary 29, 2014 at 5:45 pm in reply to: how to replace an fontello Icon for an own customized icon #216501Well, in that case, add this code too:
.avia-icon-list-container.avia-builder-el-6.el_after_av_textblock.avia-builder-el-last .iconlist-char { display: none !important; }
That will fix it.
Cheers!
Josue -
This reply was modified 11 years, 1 month ago by
-
AuthorPosts