Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

Moving the Logo

Asked Modified Viewed 895 times
V
Vyper69
V
Unprecedented Times call for Unprecedented Measures
  • Senior Member, joined since
  • Contributed 551 posts on the community forums.
  • Started 146 threads in the forums
  • Started this discussions
asked
Senior Member

Is it possible to move the logo and place a bottom border above the site menu on the Magazine theme, and have the logo centered.
0 replies

3 posts

R
Anonymous User
R
Anonymous User 367
  • Veteran Member, joined since
  • Contributed 939 posts on the community forums.
  • Started 2 threads in the forums
  • Answered 20 questions
answered
Veteran Member

Delete styles.min.css and you can edit everything.
0 replies
V
Vyper69
V
Unprecedented Times call for Unprecedented Measures
  • Senior Member, joined since
  • Contributed 551 posts on the community forums.
  • Started 146 threads in the forums
  • Started this discussions
answered
Senior Member

but deleting the styles.min.css how will it effect the sites function.
Plus you have to be able to find what you want to edit.
Not all of us know exactly what we are looking for, especially since so much has changed since v7
Edited by Vyper69 on 10-08-2020 22:49,
0 replies
R
Anonymous User
R
Anonymous User 367
  • Veteran Member, joined since
  • Contributed 939 posts on the community forums.
  • Started 2 threads in the forums
  • Answered 20 questions
answered
Veteran Member

Quote

but deleting the styles.min.css how will it effect the sites function.

you can easily edit styles.css

Quote

Not all of us know exactly what we are looking for, especially since so much has changed since v7

Everything works the same as before. Some new themes use PHP OOP because it's easy to customize theme and connect things.

For example in older themes you have main theme layout directly in render_page(), in new themes that use PHP OOP is just called class that render layout. Main class from Magazine theme is here https://github.com/PHPFusion/PHPFusio...s/Main.inc

function render_page() {
 new Magazine\Main();
}


I can put code from Main class directly into render_page() but then I cannot use benefits from OOP. If anyone don't know OOP that's not my problem. You can still write own theme that use simple v7 code style.

Arise theme ported to v9 still uses simple v7 code style https://github.com/php-fusion/Addons/...emes/Arise Every theme can be written in OOP or procedural. Old themes are procedural because it's easy to edit. I write new themes in OOP because I can do more advanced functions.
0 replies

Labels

None yet

Statistics

  • Views 0 views
  • Posts 3 posts
  • Votes 0 votes
  • Topic users 2 members

2 participants

V
V
Unprecedented Times call for Unprecedented Measures
  • Senior Member, joined since
  • Contributed 551 posts on the community forums.
  • Started 146 threads in the forums
  • Started this discussions
R
R
Anonymous User 367
  • Veteran Member, joined since
  • Contributed 939 posts on the community forums.
  • Started 2 threads in the forums
  • Answered 20 questions

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet