SKILL
Forum Replies Created
-
Thnx for the help. Will try that.
I’ve been with TUT for over …. 8 years I think. I have had updates of themes and the pagebuilder plugin. Looking back in my files….in 2016 I had pagebuilder version 2.2.3 later 2.4.4 and since 2018 version 2.8.2. And the latest now…2.10.5. So they have provided support in the past. 2Bad it does not work now.
Will switch to the SO pagebuilder. Possibly buy it with a theme of theme and move over all together.
Same problem here!
2 months prior to 28 nov 2022 we’ve contacted TUT about the PHP upgrade at our hostingparty conflicting with their plugin. I know 4 other companies have the same issue. Everyone made individual tickets at the tut support site. Everytime there would be an update next week but up till now…11-12-22 there is no sollution.
I have no confidence in TUT anymore and they do not react anymore in support tickets. I get this from the other companies to.
I found out that the pagebuilder from thinkupthemes is the siteorigin one with some additional widgets. Next week I’m trying to use the siteorigin pagebuilder. And will try to work around the tut widgets.
Then switching to a siteorigin theme and pagebuilder. I think it is a way better company….
Forum: Plugins
In reply to: [Restrict Categories] Categories gone?Edit:
When I delete a categorie all categories become invisible. When I go to “restrict categories” and deselect every category, save, go back, select every category and save again. All categories are visible again.
Dear Matthew Muro please fix the problem. It is a great plugin.
Forum: Fixing WordPress
In reply to: Categories gone?will do thanks.
Forum: Fixing WordPress
In reply to: Categories gone?Edit extra info:
I deactivated all plugins. Got my categories back. I narrowed it down to : Restrict Categories. That’s the plugin that makes all my categories disapear.
Anyone can help fix the problem so I still have my categories and can use the plugin?
Forum: Themes and Templates
In reply to: Background for header and main content.So if I’d have the problem with the theme “Renden”, the free version of the theme, I would get support here?
Forum: Themes and Templates
In reply to: Background for header and main content.Really, nobody? Is the problem/question not clear?
The header now has a separate background from the main content. I want the header to be in the background image of the main content.
Please help.
Forum: Themes and Templates
In reply to: Vantage text size circle icon widgetsI put that code in the simple custom css. That works like a charm.
Thanks for your advice!!!
Forum: Themes and Templates
In reply to: Vantage text size circle icon widgetsUsed simple custom css. Code did not work unfortunally. Font size of the text in circle widget is stille same size as it was.
Forum: Themes and Templates
In reply to: Theme Renden edit cssHi stephencottontail (nice name :D),
Internet explorer was the problem. I use different browsers to edit and view the site. Refreshing iexplore didn’t result in any change. When I use a different browser or rebooted iexplore, the changes are visible. (Actually a really dumb problem from my end)
The link to the (try out website) https://www.kb-ict.com/v5.
Which brings me to the next question. (also css related)
I want to edit the “featured” widgets. I would like to edit the color, size, position, fonttype and so on. Where in the CSS can I find those widgets to change them?
Thanks in advance.
Forum: Themes and Templates
In reply to: Circle Icon Widget.Hi Calvin,
Good idea. I hope this topic can help others.
Best of luck.
Forum: Themes and Templates
In reply to: Circle Icon Widget.I fixed it!
OMG I can’t believe why I didn’t see this syntax error before. I was missing a (how to you say) “curly bracket”.
Old code that didn’t work:
@media (max-width: 480px) { #footerimg { display: none; }
New code that does work:
@media (max-width: 480px) { #footerimg { display: none; } }
Notice the last curly bracket.
Thanks for all your help Calvin. Thanks to your reply’s I took al lot of different approaches to the problem that led to the sollution.
Forum: Themes and Templates
In reply to: Circle Icon Widget.Hi Calvin,
Thanks again for your reply.
Standard I removed the code that makes te icons disapear. If you would look on a mobile device, you would see that the image is showing and not propperly placed in the screen of the mobile device.
If I would ad the code
@media (max-width: 480px) { #footerimg { display: none; }
the problem occurs again.
To quote U2:
I still haven’t found what I’m looking for.
Forum: Themes and Templates
In reply to: Circle Icon Widget.Hi Calvin,
thanks for your help. Unfortunately the problem remains.
( By the way:
@media (max-width: XXpx) {
is from the original style.css that came with the theme.)Any other ideas?
Forum: Themes and Templates
In reply to: Circle Icon Widget.Hi,
so I broke down the piece of code that made the circle icons disapear. I just don’t know why this code causes that.
For the image on the right bottom of the screen I wrote the following css code:
#footerimg { float: right; margin: -300px -230px -150px 0; }
This piece of code is not a problem. But I want the image not to be visible on a mobile device or a tablet. So I added this code:
@media (max-width: 480px) { #footerimg { display: none; }
As soon as I put in @media code here regardless of the display type the icons of the circle icon widget disapear. This also happens when I remove the
display: none;
property.How can I fix this?