Ricerche recenti
Nessuna ricerca recente

Duke Oliver
Data ingresso 15 apr 2021
·
Ultima attività 04 feb 2022
Seguiti
0
Follower
0
Attività totali
17
Voti
0
Abbonamenti
11
PANORAMICA ATTIVITÀ
BADGE
ARTICOLI
POST
COMMENTI NELLA COMMUNITY
COMMENTI AGLI ARTICOLI
PANORAMICA ATTIVITÀ
Ultima attività di Duke Oliver
Duke Oliver ha commentato,
Heya! I love this tool, but am having an issue. Only about half of our articles get backed up (I'm using v0.6). The ones not getting backed up seem to be random, though I wonder if it's related to this message:
Visualizza commento · Data ultimo post: 16 dic 2016 · Duke Oliver
0
Follower
0
Voti
0
Commenti
Duke Oliver ha commentato,
Depends on what kind of border, though it would most likely be the css "border" property instead of the "box-shadow" property. For example,
.markdown img {
border: 1px solid black;
}
You can read more about borders and border styles at these places:
http://www.w3schools.com/css/css_border.asp
https://developer.mozilla.org/en-US/docs/Web/CSS/border-style
Visualizza commento · Data ultimo post: 20 lug 2016 · Duke Oliver
0
Follower
0
Voti
0
Commenti
Duke Oliver ha commentato,
I was under the impression that a ticket going from Pending to Open via a requester's response was a non-configurable option, and as such should happen automatically. Does your previous IT director have a custom trigger that overrides this?
Visualizza commento · Data ultimo post: 03 feb 2016 · Duke Oliver
0
Follower
0
Voti
0
Commenti
Duke Oliver ha commentato,
Hi Jason,
You have a lot of ways to achieve this! I'll show you what it's like in my own theme.
In my theme editor on the Article page, I have {{article.body}} inside of a div with the classes "article-body" and "markdown":
{{article.body}} renders the entire article, including the images I placed with the article editor. If I go to any of my articles and use my browser's 'inspect' tool (right-click > inspect) I can see that there is indeed an image inside my "article-body markdown" div:
So now I need to go into my css and figure out how to target the image so I can give it a shadow. I believe the original theme I built on top of used "markdown" as the go-to classname for these kinds of edits, so I'll do just that. Here's the css selector:
This is selecting all img tags inside of the "markdown" class. Here's my shadow edit. I went ahead and targeted every single browser I could think of (except older opera versions, woops!), but really all you'll likely need are the ones I underlined:
Now if I preview my changes, I can see all my article images have shadows!
I hope this helps. Let me know if you'd like to know more
Visualizza commento · Data ultimo post: 29 gen 2016 · Duke Oliver
0
Follower
0
Voti
0
Commenti
Duke Oliver ha commentato,
There's kind of a way with javascript. You're able to target the role of whoever is logged in (manager, agent, end_user, anonymous), and from there you can inject html or css. For example, typing HelpCenter.user.role into my browser's console will retrieve this:
From here, you could do a number of things. For my page, I'm using code similar to what's talked about here:
Essentially, you'd have the comments only render on the page via javascript if the person logged in is an agent or manager. The caveat is that it gets complicated if you still want end-users to comment on articles too. I still think it's doable though.
If you'd like help setting it up, I'd be glad to help out!
Visualizza commento · Data ultimo post: 27 gen 2016 · Duke Oliver
0
Follower
1
Voto
0
Commenti
Duke Oliver ha commentato,
Hi Rosie,
Is it possible to get a screenshot of your email template? It may be related to an issue I recently had. Gmail was adding a css class called .im to most of our zendesk emails, which made the text purple. So in my email template, I targeted the css and told it to be black instead:
What you could do is view the source of the email once it's sent, and do some poking around to find out what class you need to append your color to. If this is related to your question, I'd be happy to help out
Visualizza commento · Data ultimo post: 15 gen 2016 · Duke Oliver
0
Follower
0
Voti
0
Commenti