Gezim Basha
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] What can I do with logo?@shane82, Ah maybe there are complications then, I thought it’s easy to get the directory. Anyway, if your team can come up with the solution, see if what I said works. Then let us know.
Forum: Themes and Templates
In reply to: [Customizr] What can I do with logo?@shane82 can you please link me to the other website?
Do you mean your website under the directory sla.pl/newsite?Forum: Themes and Templates
In reply to: [Customizr] What can I do with logo?Try placing another logo, something random, and if the same symptoms appear it’s a whole other problem. Just place a random image with the same dimensions.
Also, please do try my suggestion – it won’t hurt and you won’t have to change anything. Just navigate to the installation. If you will, please link us to the installation that way as well.
Forum: Themes and Templates
In reply to: [Customizr] What can I do with logo?If you’re hosting this site on https://sla.pl, then try navigating to it through a regular link something like https://sla.pl/newsite rather than the subdomain. Do you notice any improvements that way?
Forum: Themes and Templates
In reply to: [Customizr] What can I do with logo?Can you post a link to your site?
Forum: Plugins
In reply to: [Single ID] A Non-Geek QuestionWell, most of the things you’re talking about should be do-able within the dashboard (as in no editing .php files needed).
As for the reading in full screen, yeah that might be a bit difficult to achieve.
Your theme appears to have multiple Post Templates, and you should be able to select “Single Column” for pages. Are you sure you haven’t edited them back?
Maybe some plugin or something is interfering with the modifications. It is difficult to say without being able to analyze the site first-hand. I’m sorry ??
Try to create a new page with the Single Column template selected and see what happens?
You need to change the post count on search.php – it could be that the theme is limiting the post count in that file.
Forum: Themes and Templates
In reply to: [Twenty Twelve] Menu padding between top and bottom hr@justinline You should use the Child Theme. Take a look at your code again, it should override.
@andrew Nevins I haven’t changed anything. The code I posted is taken straight from the theme. The line-height has to be overriden for the hyperlinks.
.main-navigation li a { line-height: x; }
Where x is the amount of line-height he wants. I specified that 3.69 is the default.
Forum: Themes and Templates
In reply to: [zAlive] Problems with blogHave you done any custom editing to the .php files?
You’ve probably edited the slider into the index.php file. Probably not the best idea. Let us know how you managed to remove the slider from the other pages?
Forum: Themes and Templates
In reply to: [Spun] Problem with submenus in ChromeCan you post a link to your site, so we can take a look at it.
Forum: Themes and Templates
In reply to: [Twenty Twelve] Menu padding between top and bottom hrForum: Themes and Templates
In reply to: [Twenty Twelve] Menu padding between top and bottom hrYou need to change the line-height attribute on the anchor tags.
The default code should look something like:
.main-navigation li a { border-bottom: 0; color: #6a6a6a; line-height: 3.69; text-transform: uppercase; white-space: nowrap; }
It should be on line 1492. Just change the line-height to your liking. Hope it helps!
EDIT: I’m sorry, just noticed you were also asking for the gap between each link. That can be changed using the li:
.main-navigation li { margin: 0 40px 0 0; margin: 0 2.857142857rem 0 0; position: relative; }
Just change the 2.857142857rem to anything you want.
Forum: Plugins
In reply to: [Single ID] A Non-Geek QuestionI am sorry for the late reply.
Unfortunately, yes, this plugin requires creating .php files.
But let me know what kind of flexibility do you have in mind, so I can try to help you? Do you want to be able to remove certain widgets or something like that?
Forum: Plugins
In reply to: [Date Translate] How To?Given that the OP has not replied to this post for a week, I will mark it as resolved, hoping that it has helped him/her. If the problem has persisted, a new post will be welcome.
Forum: Plugins
In reply to: [Date Translate] How To?Just go to your functions.php file, and inser the following snippet.
Let’s assume you’re going to translate the days to English.
$days = array(Sunday, Monday, Tuesday, Wednesday,Thursday, Friday, Saturday); $months = array(January, February, March, April, May, June, July, August, September, October, November, December); $months_short = array(Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec); if(function_exists(qnt_date_translate)) qnt_date_translate($days,$months,$months_short);
This will do it. Just remember the week starts with Sunday. Let me know if this helps you.