layout problems

GK User
Tue Sep 23, 2014 10:04 am
Hi Guys
I have several problems with layout:
1. I would like to have a picture on header bg position instead slideshow. But dont know exactly how to do. I f I put pic on header bg position whole layout is destroyed.
2. I would like to have always on each page content on header_right position. But this looks destroyed on all pages except index page. See: http://uni.agentur-texte.de/index.php/t ... paedagogik
3. How to remove the span title? I dont want to have the title twice! See example "Coaching" and "Coaching- professionelle Hilfe beim Texte schreiben" http://uni.agentur-texte.de/index.php/l ... -schreiben

cheers martin
User avatar
Fresh Boarder

GK User
Tue Sep 23, 2014 11:42 am
Nr. 3 I could solve myself:
go to template/features/"Page title block" = disabled
User avatar
Fresh Boarder

teitbite
Thu Sep 25, 2014 7:39 am
Hi

1. Please use Custom HTML module in header module position and show an image there.

2. I do not see anything posted in header_right position on the page from example. I think You have used "sidebar" position instead.
User avatar
Moderator

GK User
Thu Sep 25, 2014 8:39 am
Hi titbite,
thanx for your response. Now somehow the header image apperas in right way. maybe I had wrong size before.
But module in header_right position is overlapping into the white block, which I feel looks ugly.. it should be only on top of the header picture.
And stille there is margin-top of header picture....which doesnt look nice , too.
User avatar
Fresh Boarder

GK User
Thu Sep 25, 2014 8:42 am
..sorry. one more thing: after inserting the header picture, the submenu items are too far from main menu first level items and thus I cant click them because they dissappear before hovering there.
User avatar
Fresh Boarder

GK User
Thu Sep 25, 2014 7:56 pm
Hi Guys,
1. I cannot open the main menu on my samsung galaxy s4 phone.
2. The logo is cut off on the right side.
3. How can I change theH1 tag for mobiel view?
cheers. See uni.agentur-texte.de
User avatar
Fresh Boarder

GK User
Thu Sep 25, 2014 9:10 pm
I could solve some probs myself:
after adjusting the header picture (go to scource code and delete <p> tag and set picture to position: center) the module on position header_right is set well and the submenue works again!
cheers
User avatar
Fresh Boarder

GK User
Thu Sep 25, 2014 9:12 pm
the page speed and loading time of this template is really very slow!
User avatar
Fresh Boarder

GK User
Fri Sep 26, 2014 8:52 am
Can anybody help me?
1. Page speed of site is horrible. I compared with other templates. (See my site: uni.agentur-texte.de)
2. In the templatre at the end of article there are several lines that i dont need. See attachement.

cheers martin
User avatar
Fresh Boarder

teitbite
Sat Sep 27, 2014 10:58 am
Hi

Please do not bump Your own thread, it moves it at the end of the line for answer with every bump and You need to wait longer.

1. Try enable cache and compression in template settings. The longest load is for facebook app and template waits for all elements.

2. Lines comes from social icons line which You are not using, so add this to css:

Code: Select all
#gkSocialAPI { display: none; }
User avatar
Moderator

GK User
Mon Sep 29, 2014 10:53 am
Thanx teitbite,
Nr 2 is solved! Thanx!
Nr 1. I solved it in this way. In the template advanced setting, if I enable javascript compression the page becomes very slow. Thats why I disabled the js compression. Why it is so - I dont know,but it works!

One more prob:
on mobile view the article header H1 tag is too small (12px) . I tried to override in override.css with this:
article header h1, article header h2 {
font-size: 26px;
}
but no success. See f e. http://uni.agentur-texte.de/leistungen- ... hesis.html on mobile device.
cheers martin
User avatar
Fresh Boarder

teitbite
Tue Sep 30, 2014 11:13 am
Hi

1. I think some outside libraries was being processes for the compression. You should exclude it from compression first.


NEW: Add this code to mobile.css file:

Code: Select all
article header h1, article header h2 {
    font-size: 22px;
}
User avatar
Moderator

GK User
Tue Sep 30, 2014 6:46 pm
Thanx,
I added this code to mobile.css or rather the code was already there (line 415), I only changed the pixel size to 20px.
But still in mobile view there is no change.
And what about next template update if I make change in mobile view instead overwriting it?
User avatar
Fresh Boarder

teitbite
Thu Oct 02, 2014 11:14 am
Hi

Yes this code is there but is overwritten, so this code should be moved to the end of this file, but try just add "!important" rule, so this should be used as priority:

Code: Select all
article header h1, article header h2 {
    font-size: 22px !important;
}
User avatar
Moderator

GK User
Thu Oct 02, 2014 2:24 pm
Thanx,
"!important;" worked! :D hope that after next update it will work also.
cheers, martin
User avatar
Fresh Boarder

teitbite
Sat Oct 04, 2014 9:36 am
Hi

I do not think this will. You better separate this so it will be easier to prevent from being overwritten. Move the code to override.css file and keep it separated during updates, than put back to template:

Code: Select all
@media only screen and (max-width:640px) {
article header h1, article header h2 {
    font-size: 22px !important;
}
}
User avatar
Moderator


cron