Write your message below:
Is there a way to get the text in the language file to obey the style sheet callouts?
i.e. if you look here http://www.tahoecabinrentals.com/suppor ... .php?a=add
The "Submit a ticket", "Name", "Email", "Category" etc. are a different font than what is displayed in other areas (which I *assume* should be handled by the CSS file? )
Thanks..
-Mike
Text display mods possible?
Moderator: mkoch227
You will need to edit the ORIGINAL hesk_style.css file, not use your own to hesk_style.css. Or if you do at least include all the classes used by Hesk in it...
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Ah yes - but of course!
Ok, I have integrated the hesk css with my own css and have been tinkering. I think I have pretty much figured out -most- of it, except for one item:
What part of the css controls the largest text?
Ex: http://www.tahoecabinrentals.com/support/admin.php
(the text that says "Login")
or
http://www.tahoecabinrentals.com/support/
(text that says "Submit a Ticket"
I see this bold/larger text size throughout, front end & admin.
I was able to change the font type, but can't figure out which one controls the size.
I have test modified my section and hesk sections of the CSS - possibly I have a conflict in the css?
[EDIT]
It appears that the text in question has an "H3". (Looking at the page source) But no matter what I do to the H3 callout in the hesk_style.css, the output text remains the same (even if I totally remove the H3 statement from the css file.
D'argh.
Regards,
-Mike

Ok, I have integrated the hesk css with my own css and have been tinkering. I think I have pretty much figured out -most- of it, except for one item:
What part of the css controls the largest text?
Ex: http://www.tahoecabinrentals.com/support/admin.php
(the text that says "Login")
or
http://www.tahoecabinrentals.com/support/
(text that says "Submit a Ticket"
I see this bold/larger text size throughout, front end & admin.
I was able to change the font type, but can't figure out which one controls the size.
I have test modified my section and hesk sections of the CSS - possibly I have a conflict in the css?
[EDIT]
It appears that the text in question has an "H3". (Looking at the page source) But no matter what I do to the H3 callout in the hesk_style.css, the output text remains the same (even if I totally remove the H3 statement from the css file.
D'argh.
Regards,
-Mike
Wooohooo, I'm talking to myself again.
OK, I figured it out. The reason why the H3 (header) statement was being ignored in the hesk_style.css was that there was a "}" missing between 2 style callouts. Onece I put a } between the 2 callouts, then the H3 statements were followed!
In case anyone is curious, here's the snippet of the css:
---
table.enclosing {
color : black;
font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 12px;
BORDER-RIGHT: #23559C 1px solid;
BORDER-LEFT: #23559C 1px solid;
BORDER-TOP: #23559C 1px solid;
BORDER-BOTTOM: #23559C 1px solid;
} <---THAT ONE WAS MISSING
H3{
color : #AF0000;
font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 13px;
font-weight: bold;
}
.important{
color: Red;
}
OK, I figured it out. The reason why the H3 (header) statement was being ignored in the hesk_style.css was that there was a "}" missing between 2 style callouts. Onece I put a } between the 2 callouts, then the H3 statements were followed!
In case anyone is curious, here's the snippet of the css:
---
table.enclosing {
color : black;
font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 12px;
BORDER-RIGHT: #23559C 1px solid;
BORDER-LEFT: #23559C 1px solid;
BORDER-TOP: #23559C 1px solid;
BORDER-BOTTOM: #23559C 1px solid;
} <---THAT ONE WAS MISSING
H3{
color : #AF0000;
font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 13px;
font-weight: bold;
}
.important{
color: Red;
}
You need to be careful what you copy/paste, the { is there in the original style file 

Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools