ProCurve

Started by TwitchisMental, September 18, 2022, 06:30:21 PM

Previous topic - Next topic

TwitchisMental

New Version Uploaded

1.0.1
Bug Fix : No longer hides the user panel for small screens.
Adjustment: Adjusted the last post section on smaller screens to follow the theme better.
Adjustment: Hides news under 720px.

VerlaKay

I really love this theme but I have one problem with it that I have no idea how to solve and I'm hoping you can help me. Instead of the Home button saying Forum, it has my website name — Verla Kay Creations — and this is very confusing. How can this be changed to the single word, Forum?

Thank you!

Kindred

#22
That link is actually not part of the menu ---    it's part of the linktree (aka breadcrumbs)
Apparently, this theme does not have the "home" menu item

so, it defaults to the forum name

the normal "home" button in the menu is actually hidden in this theme, by CSS
Code ("In index.css for this theme") Select
.main_menu, .button_home {
    display: none !important;
}

comment out (put /* ....   */ around it)
or delete these lines to put the home button back.
Слaва
Украинi

Please do not PM, IM or Email me with support questions.  You will get better and faster responses in the support boards.  Thank you.

"Loki is not evil, although he is certainly not a force for good. Loki is... complicated."

VerlaKay

Kindred, I am terrified of breaking the theme if I start mucking around in the codes. Can you make this change for me?

Kindred

Слaва
Украинi

Please do not PM, IM or Email me with support questions.  You will get better and faster responses in the support boards.  Thank you.

"Loki is not evil, although he is certainly not a force for good. Loki is... complicated."

VerlaKay


jsx

@TwitchisMental

You've made an interesting theme combination with SMF and phpBB. Good job!

Take a look at the Prosilver Dark Edition theme, it looks great, I'm curious what the Curve theme would look like in that color. If you created Curve in this color, it would be great.

Kindred

@jsx have you looked at the curve color changer?
Слaва
Украинi

Please do not PM, IM or Email me with support questions.  You will get better and faster responses in the support boards.  Thank you.

"Loki is not evil, although he is certainly not a force for good. Loki is... complicated."

jsx

Kindred thanks for the information about this mod.

20abc22

A great theme! Could you please let me know how I can change the colour of text in postings from blue to black, please.

Thank you!

TwitchisMental

Quote from: 20abc22 on December 27, 2022, 04:59:19 PMA great theme! Could you please let me know how I can change the colour of text in postings from blue to black, please.

Thank you!
Most of those colors are set via body. Open index.css

body {
 font: 75.50%/120% Verdana, Helvetica, Arial, sans-serif;
 color: rgb(83, 100, 130);
 background-color: RGB(245, 247, 250);
 display: flex;
 flex-direction: column;
 min-height: 100vh;
 padding: 12px 0px;
}

Change color to

color: rgb(0,0,0);

20abc22

Awesome - what great support and customer service (if you will :)) from you! I've just installed the Notepad++ and will play with this code now :).

20abc22

All modifications with moving of the poster avatars from right to left and text colour modifications worked just perfectly - thanks again!

Now I have a question on modification of the forum logo. When I add a custom image of a certain size, the text (which is the name of my forum which acts as a hyperlink) disappears and I can see image only. Of course, I have to preload these images to the forum directory via cPanel.

I have another image which I made as a combination of the first image and text for my forum name, but when I insert it, it is not showing, but the hyperlink forum name is showing.

Is this something to do with size limitation of the image?

Also, how do I leave a review of your theme (I want to make it a glowing one :)).

Thanks again!

Steve

Quote from: 20abc22 on December 28, 2022, 12:34:11 AMAlso, how do I leave a review of your theme (I want to make it a glowing one :)).
Go to where you downloaded the theme: https://custom.simplemachines.org/index.php?theme=3014 and click on the 'Reviews' tab.
DO NOT pm me for support!

20abc22

The other question I have - how do I make a forum logo or another picture show on the tab for the website when I browse? There is a technical term for it, but I don't remember it :).

20abc22

Quote from: Steve on December 28, 2022, 06:28:48 AM
Quote from: 20abc22 on December 28, 2022, 12:34:11 AMAlso, how do I leave a review of your theme (I want to make it a glowing one :)).
Go to where you downloaded the theme: https://custom.simplemachines.org/index.php?theme=3014 and click on the 'Reviews' tab.

Thanks! I tried doing it yesterday, but got some kind of error. All done now!

TwitchisMental

Quote from: 20abc22 on December 28, 2022, 12:34:11 AMAll modifications with moving of the poster avatars from right to left and text colour modifications worked just perfectly - thanks again!

Now I have a question on modification of the forum logo. When I add a custom image of a certain size, the text (which is the name of my forum which acts as a hyperlink) disappears and I can see image only. Of course, I have to preload these images to the forum directory via cPanel.

I have another image which I made as a combination of the first image and text for my forum name, but when I insert it, it is not showing, but the hyperlink forum name is showing.

Is this something to do with size limitation of the image?

Also, how do I leave a review of your theme (I want to make it a glowing one :)).

Thanks again!
The easiest way to replace the logo is replacing the file in theme directory/custom/logo.png.  Just make the name your logo replacement logo.png and drop it in replacing the old one.

The image will also link to your forum like normal.

As far as a height limit, it should expand with your logo.. If not a min-height will need to be added to the header most likely.



20abc22

Quote from: TwitchisMental on December 28, 2022, 06:22:25 PM
Quote from: 20abc22 on December 28, 2022, 12:34:11 AMAll modifications with moving of the poster avatars from right to left and text colour modifications worked just perfectly - thanks again!

Now I have a question on modification of the forum logo. When I add a custom image of a certain size, the text (which is the name of my forum which acts as a hyperlink) disappears and I can see image only. Of course, I have to preload these images to the forum directory via cPanel.

I have another image which I made as a combination of the first image and text for my forum name, but when I insert it, it is not showing, but the hyperlink forum name is showing.

Is this something to do with size limitation of the image?

Also, how do I leave a review of your theme (I want to make it a glowing one :)).

Thanks again!
The easiest way to replace the logo is replacing the file in theme directory/custom/logo.png.  Just make the name your logo replacement logo.png and drop it in replacing the old one.

The image will also link to your forum like normal.

As far as a height limit, it should expand with your logo.. If not a min-height will need to be added to the header most likely.


Thanks a lot, I will do that!

I have some additional questions:

1) If I have an image for a logo, how can I make it centered, rather than to the left?
2) How can I have both the image AND the name of the forum display in the top section of the forum?
3) Can I make background of the section with the logo brighter (e.g., light blue or white)?

Thanks again!!

TwitchisMental

Quote from: 20abc22 on December 28, 2022, 06:30:42 PM
Quote from: TwitchisMental on December 28, 2022, 06:22:25 PM
Quote from: 20abc22 on December 28, 2022, 12:34:11 AMAll modifications with moving of the poster avatars from right to left and text colour modifications worked just perfectly - thanks again!

Now I have a question on modification of the forum logo. When I add a custom image of a certain size, the text (which is the name of my forum which acts as a hyperlink) disappears and I can see image only. Of course, I have to preload these images to the forum directory via cPanel.

I have another image which I made as a combination of the first image and text for my forum name, but when I insert it, it is not showing, but the hyperlink forum name is showing.

Is this something to do with size limitation of the image?

Also, how do I leave a review of your theme (I want to make it a glowing one :)).

Thanks again!
The easiest way to replace the logo is replacing the file in theme directory/custom/logo.png.  Just make the name your logo replacement logo.png and drop it in replacing the old one.

The image will also link to your forum like normal.

As far as a height limit, it should expand with your logo.. If not a min-height will need to be added to the header most likely.


Thanks a lot, I will do that!

I have some additional questions:

1) If I have an image for a logo, how can I make it centered, rather than to the left?
2) How can I have both the image AND the name of the forum display in the top section of the forum?
3) Can I make background of the section with the logo brighter (e.g., light blue or white)?

Thanks again!!

1. That would require a bit of editing to make it be in the center.
2. If you wanted to do that, it would require a bit of editing aswell.
3. Yes in index.css

Find

#header {
    background: rgb(85, 126, 160);
    box-shadow: 0 16px 20px rgba(255, 255, 255, 0.25) inset;
padding: 2px 2px 12px 2px;
display: flex;
align-items: flex-end;
width: 100%;
border-radius: 7px;
}


Change background to whatever you would like.

20abc22

Quote from: TwitchisMental on December 29, 2022, 03:16:50 PMChange background to whatever you would like.


For now, I've created a larger image which includes the name of the forum and the logo on the left, and managed to insert it. Looks ok, knocking on wood :)). As I mature in my skillset, I will try to evolve the looks of the forum heading.

Now off to deploying some embed mods :).

Thanks again for your assistance!!

Advertisement: