-
AuthorPosts
-
Chase Jestley Friend
Chase Jestley
- Join date:
- October 2015
- Posts:
- 114
- Downloads:
- 122
- Uploads:
- 3
- Thanks:
- 15
October 25, 2016 at 3:27 am #979940Ha… now the menu bar changed and the login button and the logo don’t fit in it anymore… i’m going to get my membership yanked at this rate…. We get one thing (well, you get one thing fixed) and something else changes….
Chase Jestley FriendChase Jestley
- Join date:
- October 2015
- Posts:
- 114
- Downloads:
- 122
- Uploads:
- 3
- Thanks:
- 15
October 26, 2016 at 12:01 am #980325A visual
http://prntscr.com/cyz2caSaguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
October 26, 2016 at 1:44 am #980380Hi,
May I know which changes you applied before this issue happened?
You can include the link of that topic here so I will check for you.
Chase Jestley FriendChase Jestley
- Join date:
- October 2015
- Posts:
- 114
- Downloads:
- 122
- Uploads:
- 3
- Thanks:
- 15
October 26, 2016 at 2:24 am #980411To be completely honest, I’m not sure… there was a change to make sure the menu fit on one line, padding changes compensate for the top of the page and the only other thing I can think of was theme colors. Any changes are in the custom.css file. It just went narrow and started pushing the logo and login popup out. And the height got smaller.
Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
October 26, 2016 at 4:41 am #980462Could you illustrate the modification you expect via screenshot?
Chase Jestley FriendChase Jestley
- Join date:
- October 2015
- Posts:
- 114
- Downloads:
- 122
- Uploads:
- 3
- Thanks:
- 15
October 26, 2016 at 4:52 am #980465This screen shot shows it before the last padding change to force the top of the page down.
http://prntscr.com/cykh7g
In it, you can see the logo and the login button were within the borders of the menu (a little issue with centering). just not sure how it just changed.
Thanks!Chase Jestley FriendChase Jestley
- Join date:
- October 2015
- Posts:
- 114
- Downloads:
- 122
- Uploads:
- 3
- Thanks:
- 15
October 27, 2016 at 3:10 am #980784Anything?
Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
October 27, 2016 at 8:48 am #980874It due to the custom code in ‘custom.css’ file on your site:
@media (min-width: 992px) { .logo-control .logo-img { display: inline-block; padding-top: 15px; } }
try to remove the
padding-top: 15px;
propertyChase Jestley FriendChase Jestley
- Join date:
- October 2015
- Posts:
- 114
- Downloads:
- 122
- Uploads:
- 3
- Thanks:
- 15
October 27, 2016 at 2:04 pm #981024The problem is THIS: http://prntscr.com/czms65
it at one point actually covered the pieces: http://prnt.sc/cwritn
WHY DID THE HEIGHT OF THE MENU SHRINK? WHY DID IT ALL OF A SUDDEN START TO COVER THE LOGO? WHY CAN YOU NOT SEE WHAT IT IS DOING? I AM SUPPOSED TO GO LIVE TODAY AND HAVE SPENT 2 DAYS TRYING TO GET YOU TO ACTUALLY OPEN YOUR EYES AND SEE WHAT COMMON SENSE SAYS IS A PROBLEM! THIS IS IMPORTANT!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
October 28, 2016 at 2:00 am #981209How it’s displaying now is due to your customisation on your site, kindly check this css file:
http://rutlandparksociety.com/templates/ja_elicyon/local/css/themes/rps/bootstrap.css
.navbar { border: 1px solid transparent; margin-bottom: 25px; min-height: 60px; position: relative; }
it should be:
.navbar { border: 1px solid transparent; margin-bottom: 25px; min-height: 120px; position: relative; }
http://rutlandparksociety.com/templates/ja_elicyon/local/css/themes/rps/template.css
.logo-image { height: 60px; line-height: 60px; width: 60px; text-align: center; border-right: 1px solid #333333; -webkit-transition: all 350ms; -o-transition: all 350ms; transition: all 350ms; }
it should be:
.logo-image { height: 120px; line-height: 120px; width: 120px; text-align: center; border-right: 1px solid #333333; -webkit-transition: all 350ms; -o-transition: all 350ms; transition: all 350ms; }
http://rutlandparksociety.com/templates/ja_elicyon/local/css/themes/rps/template.css
.head-cart { border-left: 1px solid #333333; height: 60px; line-height: 60px; float: right; text-align: center; position: relative; width: 60px; -webkit-transition: all 350ms; -o-transition: all 350ms; transition: all 350ms; }
it should be:
.head-cart { border-left: 1px solid #333333; height: 120px; line-height: 120px; float: right; text-align: center; position: relative; width: 120px; -webkit-transition: all 350ms; -o-transition: all 350ms; transition: all 350ms; }
The same with class ‘affix’ in above css file, for example:
.affix .logo-image { height: 45px; line-height: 45px; width: 45px; }
Chase Jestley FriendChase Jestley
- Join date:
- October 2015
- Posts:
- 114
- Downloads:
- 122
- Uploads:
- 3
- Thanks:
- 15
October 28, 2016 at 4:28 pm #981534Thanks…. I will edit the files…. but curiously, I never made those changes in the first place.. my only coding changes were in the custom CSS file…
Just a glitch in the system I suppose.Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
October 31, 2016 at 4:28 am #981957If there is anyone makes changes on your site, pls tell them to clarify the changes in details so you can control it easy.
1 user says Thank You to Saguaros for this useful post
Chase Jestley FriendChase Jestley
- Join date:
- October 2015
- Posts:
- 114
- Downloads:
- 122
- Uploads:
- 3
- Thanks:
- 15
October 31, 2016 at 9:42 pm #982176Thanks… it was only someone from Joomlart, as I am the only person with access
-
AuthorPosts
This topic contains 13 replies, has 2 voices, and was last updated by Chase Jestley 8 years ago.
We moved to new unified forum. Please post all new support queries in our New Forum