themehit
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Omega] infinite scrollingHi, can you try jetpack infinite scroll module instead?
Forum: Themes and Templates
In reply to: [Church] Sudden header Image Issue in WP 4.4Try to setup a featured image on your blog page. Then, all your posts will use that featured image as header.
Forum: Themes and Templates
In reply to: [Church] Menu not responsiveGreat customization! your site looks awesome
Forum: Themes and Templates
In reply to: [Lifestyle] Featured image sizeHi, go to “Appearance > Customize > Posts” and select “large” image size. If you set 510px width for large image, you need to change that via WP admin > Settings > Media.
Great Site 🙂
Forum: Themes and Templates
In reply to: [Lifestyle] increasing length of footer widgetHi, I don’t see your site have footer widget. When you say length, do you mean width or height?
Forum: Themes and Templates
In reply to: [Lifestyle] Relocate the Leave a Comment Bar /OptionComment section of Lifestyle theme is located below the post. Can you post your site url?
Forum: Themes and Templates
In reply to: [Custom] how to add subject topic under header photo not upah, that’s menu. To move the menu below the header, find this code in custom/functions.php
add_action( 'omega_header', 'omega_get_primary_menu' ); add_action( 'omega_header', 'custom_intro');and switch the position
add_action( 'omega_header', 'custom_intro'); add_action( 'omega_header', 'omega_get_primary_menu' );Forum: Themes and Templates
In reply to: [Omega] header on mobile doesn't fill the page-topThe grid style might be the problem. There are many additional css files that could override theme style. Try to disable the plugin to debug.
Forum: Themes and Templates
In reply to: [Lifestyle] Limit Post Excerpt Length By Characterthat post excerpt on that page is not part of the theme. That is generated from Visual composer. Consult with them.
Forum: Themes and Templates
In reply to: [Composer] Homepage bannerDo you mean to replace the static header image with slideshow?
Forum: Themes and Templates
In reply to: [Composer] Fixed/Sticky nav barHi, you can do it with CSS tweak below. Go to “Appearance > Customize > CSS” and insert custom css below
.site-header { padding: 10px 0px 3px; position: fixed; width: 100%; background: #fff; }Forum: Themes and Templates
In reply to: [Custom] how to add subject topic under header photo not upYour title (كشف تسربات المياة) already below header
Forum: Themes and Templates
In reply to: [Omega] static (sticky) navigation in headerMy code works on your site. Go to “Appearance > Customize > CSS” and drop the code
.nav-primary { position: fixed; width: 100%; background-color: #fff; } .site-header { margin-top: 80px; }Seems that element is not a part of the theme. Try to remove it from Visual composer
Forum: Themes and Templates
In reply to: [Lifestyle] Remove Feature Image from PostsThe easiest way to do it is via CSS.
.singular-post .banner { display:none; }