Forum Replies Created
-
in reply to: Tower Theme header settings
Hello,
To achieve this view, please go to General Options > Header Options > Header Style, select ‘Simple Style’. Set up transparency and background color(screenshot). Scroll down to “Remove container from header”, and uncheck box.
Let us know if you need further help.Best regards!
in reply to: Tower Theme Menu change color inactive itemsHello,
I don’t see any menu items in your site, can you please send a link where there is one? So i can give a more specific advice.
Best regards!
in reply to: Page Options – Layout – SidebarHello,
The theme is very flexible in most of the features. Even with sidebars. You can use custom sidebars. Just leave empty the default one (Sidebar Page) and create as many sidebars as you want in General Options > Custom Sidebars.
Best regards!
in reply to: Show pagination for portfolio carouselHello,
Please separate the “Title Heading” element of the portfolio into a new row. Go to it’s Row Settings > Type > Full Width background.
Best regards!
in reply to: Website on Mobile & TabletsHello,
This is how i see your site in iPhone. What do you need to change?
For the services in iPad, please add this code into your custom css box:@media (max-width: 979px){ .services_media.style_2 h5 { bottom: 22px !important; width: 64px !important; padding: 7px 9px !important; }}This should be the result.
Best regards!
in reply to: Staff carouselHello,
I see the menu and logo is back as it was (screenshot). Did you solve your issue? Let us know if you need further help.
Best regards!
in reply to: Read more and links in the excerptsHello,
1-For your request you will have to edit theme files. Please go to file: \includes\view\blog\loop-index.php and add these lines:
$words_excerpt = explode(' ', get_the_excerpt() ); $words_content = explode(' ', get_the_content() );right after this line(21):
$content = str_replace(']]>', ']]>', apply_filters('the_content', $content ));
Now in the same file, find these lines:<?php if(!is_single()): ?> <a href="<?php echo get_permalink() ?>" class="btn-bt <?php echo esc_attr($cl_redata['overall_button_style'][0]) ?>"><span><?php _e('Read More', 'codeless') ?></span><i class="moon-arrow-right-5"></i></a> <?php endif; ?>And replace with these:
<?php if(!is_single() && (count($words_excerpt) < count($words_content))): ?> <a href="<?php echo get_permalink() ?>" class="btn-bt <?php echo esc_attr($cl_redata['overall_button_style'][0]) ?>"><span><?php _e('Read More', 'codeless') ?></span><i class="moon-arrow-right-5"></i></a> <?php endif; ?>Save file and refresh page. It will hide the “Read more..” from posts which have the excerpt text equal or larger than the content.
2- To justify text, please add this code into your custom css box:.blog-article.alternate-style .content .text { text-align: justify; }Best regards!
in reply to: Latest blog post thumbnail linkHello,
Thank you for the suggestion. I will refer it to the developer team.
Best regards!
in reply to: SEO – Demo dataHello,
No it won’t. Don’t worry. The updates will only overwrite the theme files in your wp-content/themes folder. The data and settings you have already setup are saved in the database and therefore won’t be affected by any update.
Best regards!
in reply to: Text under each ohter on postsHello,
You have an error in your site. Please see screenshot. Make sure you have all necessary access rights in your site files. Also disable all third party plugins as one of them may be conflicting with the shortcode scripts. Enable one by one to find the culprit.
Let us know.Best regards!
in reply to: Latest blog post thumbnail linkHello,
Please go to file vc_templates/latest_blog.php and find this line:
$output .= '<img src="'.esc_url(codeless_image_by_id(get_post_thumbnail_id(), 'port2', 'url')).'" alt="">';
Replace it with this:
$output .= '<a href="'.esc_attr(get_permalink()).'"><img src="'.esc_url(codeless_image_by_id(get_post_thumbnail_id(), 'port2', 'url')).'" alt=""></a>';
Save file and refresh.Best regards!
Hello,
Have you imported any dummy data? Please import the demo you want to use. There are already created all the pages you need to see as examples. Let us know if you need help.
PS: This is Specular theme support forum, you have Tower theme. Please write at theme’s forum for later issues.
Best regards!
in reply to: Demo ImportingHello,
This is strange. Please make sure to have enough memory and execution time limit first, if the issue persists send us your wp credentials in a private reply. So we can give it a closer look.
Best regards!
in reply to: Dummy Data Import V1.4.4Hello,
This is strange. Please make sure to have enough memory and execution time limit first, if the issue persists send us your wp credentials in a private reply. So we can give it a closer look.
Best regards!
in reply to: Twitter WidgetHello,
“And if I set the widget to NOT show avatar: will it then display the twitter logo?”
Sorry but that is not possible for now. If you do the edits above only the avatar will be shown. We will fix this in the next update.
“I would love to have the ability to show avatar on one page and twitter logo on the other page.. Is this possible?”
This is not possible if you will be displaying the same widget is different pages. So if you set up footer twitter with avatar, it is not possible to have the same widget display avatar in one page and twitter icon in another.Best regards!