Balint Toth
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Suits] Custom class for a category pageThat is a good way to apply css code also, but it applies to the page differently from when you paste it in the style.css (usually the css code from Jetpack’s plugin is linked last, so usually it has the highest priority)
I think some of the code is being overwritten by something, but it is really hard to tell without seeing what happens (I use FireBug too 🙂 ). It may be some plugin, or some code of the theme that is interfering with your modifications.
You should check if in the
header.phpfile the<body>tag looks something like this:<body <?php body_class(); ?>>This will output some extra CSS IDs and classes to the body tag, which helps you create css code that applies only to specific pages.
Please let me know how you manage.
Cheers,
Toth Balint BT [that is my username. What’s wrong with that?]Forum: Themes and Templates
In reply to: [Delicate] How to show the slider on only some of the pages?Sorry, I was not really clear. I have meant that please delete the code you have previously put in Easy Custom CSS plugin if it is still here.
And please paste in this code there:
.head-img { display: none; } .page-id-28 .head-img, .home .head-img, .page-id-4 .head-img { display: block; }What this does is by default hides the slider everywhere, and adds the exceptions on the 3 pages where you want it to appear.
By the way, you have a really cool site there. Could I ask you, why are all the pages and posts password protected?
Cheers,
Toth Balint BTForum: Themes and Templates
In reply to: [Duena] change color upper lineCould you please share a link so I could take a look to your site?
Forum: Themes and Templates
In reply to: [Hueman] Text widget not workingPlease check that you have put the text widget in the proper widget area. You have some extensive settings related to this at
Appearance->Theme Optionsat the Layout and Sidebars tab.
And please try to change the text widget’s text with some dummy text to check if it shows up that way.By checking the source code, there is no sign that there should be a text widget somewhere…
Please let me know what did you find out.
Cheers,
Toth Balint BTForum: Themes and Templates
In reply to: [Delicate] How to show the slider on only some of the pages?Hello!
With this code you hide the slider everywhere. It can be done with some custom CSS code. If you could please share a link to your site and tell me where you would like it to show, I am happy to provide you the necessary code. And please remove the above mentioned code.
Thank you!
Cheers,
Toth Balint BTForum: Themes and Templates
In reply to: [The Landing Page] installed theme caused wordpress to crashHello!
In this kind of situations you can deactivate a theme or plugin ‘manually’. With FTP or your web hosting company’s file browser, please go to
/wp-content/themes/and rename the faulty theme’s folder name to something liketheme-badso this way WordPress cannot find the theme files, and will fall back to some other installed theme, usually to one of twenty- themes.Please let me know if you were able to solve your issue.
[signature removed per forum etiquette]
Forum: Themes and Templates
In reply to: [Formation] Changing ColorsHello!
I specialize in these kind of modifications. This can be easily done with some simple css code. Could you please share a link to your site so I could take a look?
Thanks!
[signature removed per forum etiquette]
Forum: Themes and Templates
In reply to: [Writr] How to edit lines above site titleHello!
I specialize in these kind of modifications. Could you please share a link to your site so I could take a look?
Thanks!
[signature removed per forum etiquette]
Forum: Themes and Templates
In reply to: [i-transform] remove categorysHello!
I specialize in these kind of modifications. This can be easily done with some simple css code. Could you please share a link to your site so I could take a look?
Thanks!
[signature removed per forum etiquette]
Forum: Themes and Templates
In reply to: [Suits] Custom class for a category pageHello!
Could you please share a link to your site so I could take a look?
Just as a friendly advice, you should never make any changes to your theme’s files. The best practice is to create a child theme, because this ensures that your modifications are not deleted when you update your theme or WordPress.
[signature removed per forum etiquette]
Forum: Themes and Templates
In reply to: [Dazzling] SliderHello!
You can find the slider settings at
Appearance->Theme Optionsunder the main tab. You have to enable the slider with theCheck if you want to enable slidercheckbox. You have to choose a post category where the slider posts are located, and you can set up the number of slider you would like to use. If you need to create one, you can do that from aNew poston the right side. Make sure that the slider posts have their featured images uploaded properly.Let me know if you were able to set it up. If you need any help, just feel free to drop a line here and I am happy to assist you.
[signature removed per forum etiquette]
Forum: Themes and Templates
In reply to: Different style (CSS) on different pageHello!
Because of the
body_class()in your body tag, the specific page you are trying to modify should have it’s ID number in some form as a body class. This allows you to create CSS code to target only that specific page, and that is the most commonly used method to do this kind of styling changes, I do it also this way.If you use this method, there is no need for any separate css files, you could simply paste that code to your child theme’s style.css file. Could I ask, why you put these css files to other theme directories? I have never tried it, but it is possible that for security reasons WordPress prevents linking stylesheets from other theme’s folders.
Let me know what happened.
[signature removed per forum etiquette]
Forum: Themes and Templates
In reply to: [Hueman] Text widget not workingHello!
From what you have described, it sounds like it may be an issue specific to your site. Could you please share a link to your site, so I could take a look for you?
Thank you!
Toth Balint BT
Forum: Themes and Templates
In reply to: [Twenty Thirteen] background imageHello!
Yes, you are completely right. Because of the transparency, the code needed to set the color, uses a little bit differet color system, namely rgba (more info on that you can find here under the RGB and RGBA headings).
Currently this is the code which sets the background color of the sidebar menu:
.widget { background-color: rgba(247, 245, 231, 0.7); }If you don’t need transparency, than you can change the rgba to the hex value settings, so for example if you would like it to have the same color as the main menu bar, you could use this code:
.widget { background-color: #FFFFFF; }I hope this helps you. 🙂 If you have any more questions, just feel free to ask them here and I am happy to help you.
Cheers,
Toth Balint BTForum: Themes and Templates
In reply to: Change slider background/borderYou are welcome! 🙂
I am glad that I could solve the issue for you. If you have any more questions, just feel free to drop a line here.
Have a nice day!
[signature removed per forum etiquette]