Forum Replies Created
-
AuthorPosts
-
jimmythetulip
ParticipantI still think, it could be nice, if you make Contango more mobile friendly.
I have a lot of users, who use their mobile phone to access my site, and it would improve their reading experience, if the text spans over the whole screen width.It would be nice, if you could give me some clues to how I can implement this change. I guess I could override the layout in the parent theme.
Which responsive fremwork do you use (bootstrap, css grid)?
jimmythetulip
ParticipantThanks. It worked!
jimmythetulip
Participantsure it’s: http://whitfield.dk
Thanks in advance
jimmythetulip
ParticipantOkay thx for your feedback!
Sure, I’ve translated the screenshot to english as you asked for.
[ATTACH]88[/ATTACH] [ATTACH]87[/ATTACH]
jimmythetulip
ParticipantProblem solved!
jimmythetulip
ParticipantDear Admin
You’ve been very helpful as always.
I followed your guidelines and customized your solution, so it fitted my requirements.
Just to clarify; I DON’T ALTER the style.css file in the parent theme, but the style.css in my child theme.
Have a nice day and keep up the good work !
And thank you so much.
jimmythetulip
ParticipantBy the way. Here’s a link to my website http://whitfield.dk
jimmythetulip
ParticipantDear Admin
Your answer only covered the global anchors hover, but what about the global anchors; eg. a, a:link, a:visited ?
I need a simple global soloution to all my links, so I don’t need to change every anchor element individually in the style.css file.- Links must be white in terms of font colour.
- Buttons must have red background colour and white font colour.
Do you follow me ?
jimmythetulip
ParticipantHi Admin
That didn’t work for me, so I’ve put my translated strings inside the functions.php and that worked ![PHP]function change_translate_text( $translated ) {
$text = array(
‘1 Comment’ => ‘1 Kommentar’,
‘% Comments’ => ‘% Kommentarer’,
‘Edit’ => ‘Rediger’,
“The following is a list of the latest posts from the blog. Maybe it will help you find what you’re looking for.” => ‘Følgende liste viser de seneste indlæg. Måske vil det hjælpe dig med at finde det du søger.’,
‘Reply’ => ‘Svar’,
‘said:’ => ‘skrev:’,
‘Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.’ => ‘Intet fundet’,
‘nothing found’ => ‘Intet Fundet’,
‘Search for:’ => ‘Søg efter:’,
‘search’ => ‘Søg’,
‘Leave a comment’ => ‘Skriv en kommentar’);
$translated = str_ireplace( array_keys($text), $text, $translated );
return $translated;
}
add_filter( ‘gettext’, ‘change_translate_text’, 20 );[/PHP]jimmythetulip
ParticipantThanks again
December 19, 2014 at 10:28 am in reply to: Where to start? Want to make my own blog based on Contango.. #1477jimmythetulip
ParticipantThanks admin
-
AuthorPosts