-
-
How do I stop the header & menu form scrolling? I just want to to stay at the top and not move while I’m viewing a page. I’ve tried changing some of the settings in the tower options but must not be hitting the right ones.
-
-
BTW the site above is NOT the site I need the Sticky header turned off… just let me know how to do it please and thanks!!!
-
Hello,
-You can set the home page in General Options > Select Special Pages. It will update the Settings > Readings value too.
I already changed it to “home” for you.-can you please be more specific? What issue do you have with sticky header? To set it ON/OFF just go to General Options > Header Options > Sticky Header.
Let us know.Best regards!
-
Hi Mihaila
For the truckercontrol site above I have the header set as logo centered 2 nav on sides, but the right side nav breaks down under the left side nav on an ipad.
-
Hello,
This happens because the menu width is wider than the header width and it is not yet reached the width for responsive mode to take on. Please go to General Options > Header Options > Menu Options and decrease the Menu Items padding/margin.
Let us know.Best regards!
-
-
Hello,
Sorry for the late reply.
1-I added this code into the page’s custom css box:li { float: left;}
2-Please refer to this topic: https://support.codeless.co/forums/topic/social-media-icons-2/ regarding this.
3-Yes, please go to file vc-templates/button.php and find this line:
$output .= '<a class="btn-bt align-'.esc_attr($align).' '.esc_attr($cl_redata['overall_button_style'][0]).'" href="'.esc_url($link).'"><span>'.esc_attr($title).'</span><i class="'.esc_attr($icon).'"></i></a>';
Replace with this:
$output .= '<a class="btn-bt align-'.esc_attr($align).' '.esc_attr($cl_redata['overall_button_style'][0]).'" target="_blank" href="'.esc_url($link).'"><span>'.esc_attr($title).'</span><i class="'.esc_attr($icon).'"></i></a>';
4-I added this code into the page’s custom css box:
.recent_news.vertical .blog-item p { display: none; }
Best regards!
-
Hey if I make those edits to the php files will I have to updated them every time there is a tower update?
-
Hello,
No 1, is an edit that we will include in the next theme update so you won’t need to do it again. The other points, are personal changes so will not be added in theme update. You should do them again.
You can always suggest us features and changes for future updates , in our “Suggest us Features” forum.Best regards!
-
Hey almost done!
<p class=”p1″>1. Can the responsive ‘menu icon’ bars be white</p>
<p class=”p1″>2. On this page (https://www.foodforthepoor.ca/site/jamaica/) can the photo click straight through instead of showing the option of the magnifying glass and the link.</p>
<p class=”p1″>3. Can the sliders on the homepage speed up</p> -
Hello,
1-Please add this code into your custom css box:
@media (max-width: 979px){ .mobile_small_menu { color: white;} }
2-You mean to make the hole image a link? Yes, it can but you will need to make changes to theme files.
Go to file includes/view/portfolio/loop-grid.php and find these lines:
https://codeshare.io/93OhB
Replace with these:
https://codeshare.io/pGu8Y3-Go to the page’s General Settings > Sliders Options > Codeless Slider Speed
, change the value here.Best regards!
-
-
Hey I was able to get in with some help from GoDaddy but now if I try to activate the mailchimp plug in it messes up the site, any suggestions please and thanks!
It’s okay if it when you try to fix it gets the error, I know how to go in the back end and disable all the plugins.
-
Would it be best to install a new version of wordpress, I have an exported xml file with all the content. And I can buy another license of Tower.
-
Hello,
Can you please be more clear? What issues are you having when the mailchimp is active?
the included plugins are located in Tower/plugins folder. But after installing them, the working plugin files are located under wordpress default plugin folder (wp-content/plugins). So there is nothing different from other wp sites.You can also install Mailchimp for WP plugin from Plugins > Add New, search it from the available plugins list (screenshot).
Let us know.Best regards!
-
Hey when I try to install from the plugins> Add New mailchimp I get an error message saying failed
And if I try to activate the one in the theme now which I have turned off, the site goes down and I get this message
-
Hello,
You are using a child theme, installing the requested plugins from it, won’t work as the links can’t be found. I switched to Tower parent and activated mailchimp. The activated again the child theme.
Let us know if you need further help.
best regards!
-
OMG thank you so much, I’m so clued out. Can’t tell you how much I love codeless support!
Mihaila gave me the code below to just make the project images link to the projects on this page, it got rid of the magnifying glass and link icon but the images aren’t linking to the projects.
https://www.foodforthepoor.ca/site/jamaica/
<p style=”box-sizing: border-box; color: #393d40; font-family: ‘Open Sans’, ‘Helvetica Neue’, Helvetica, Arial, sans-serif; font-size: 14px; line-height: 22px;”>2-You mean to make the hole image a link? Yes, it can but you will need to make changes to theme files.<br style=”box-sizing: border-box;” />Go to file includes/view/portfolio/loop-grid.php and find these lines:</p>
<p style=”box-sizing: border-box; color: #393d40; font-family: ‘Open Sans’, ‘Helvetica Neue’, Helvetica, Arial, sans-serif; font-size: 14px; line-height: 22px;”>https://codeshare.io/93OhB</p>
<p style=”box-sizing: border-box; color: #393d40; font-family: ‘Open Sans’, ‘Helvetica Neue’, Helvetica, Arial, sans-serif; font-size: 14px; line-height: 22px;”>Replace with these:</p>
<p style=”box-sizing: border-box; color: #393d40; font-family: ‘Open Sans’, ‘Helvetica Neue’, Helvetica, Arial, sans-serif; font-size: 14px; line-height: 22px;”>https://codeshare.io/pGu8Y</p> -
Hello,
Sorry for the late reply.
The code worked but it is the overlay that is impeding the image to be a link. I added this code:.portfolio-item.basic .he-view { width: 0 !important; }
into “jamaica” custom css box. The overlay is gone and the images of portfolio are links now.
-If you want to completely remove the overlay from the code (and not use css to hide it) then from this code: https://codeshare.io/pGu8Y remove these lines:<div class="overlay he-view"> <div class="bg a0" data-animate="fadeIn"> </div> </div>
Best regards!
- This reply was modified 8 years, 5 months ago by Mirela.
-
-
Hello,
Welcome back :)
It is not possible to make buttons open in new tab using css. You have to edit the responsible php file. I see three yellow “Donate” buttons in this page. And a blue “FAQs” button. Do you want to edit only the yellow ones?
You can do it by editing file vc_templates/button.php. Find these lines:
https://codeshare.io/kgcZl
And replace with this:
https://codeshare.io/5chqtKnow that this will eventually affect all other buttons in your site(if created with button element of Visual Composer).
Let us know.Note: Please consider updating your profile data. Read this article for more information.
Best regards!
-
We just want the orange buttons on this page… so I’m thinking maybe I should just create those buttons as images and have them open in a new window. Do you think that is a good solution?
Any suggestions will be <span style=”line-height: 1.5;”>appreciated</span>!
-
You must be logged in to reply to this topic.