SOME QUESTIONS TOGHETER
-
hELLO,
I need to move the black title bar and title a little bit up in order to show the pict at the center of the screen when I change page. Is it possible?– Why the description of the pict typed in lowercase change in uppercase when I preview the page ?
– I set up my contacts page but the information about name, email etc etc etc are not at the center of the page. How can I center the entire box and put it at the center of the screen??
– Is it possible change the size of the font’s title?
Sorry but I don’t have enough knowledge in html and css
THANK YOUThe blog I need help with is: (visible only to logged in users)
-
Hi there,
Why the description of the pict typed in lowercase change in uppercase when I preview the page ?
In Intergalactic, all heading elements are set to uppercase. We can either change all heading elements to normal case (respects what you type in) or we can set just the h6 element you are using below the image, like on http://giorgiogiannico.org/michele/ .
To change all heading elements to normal, go to Appearance > Customize > CSS, delete all the informational text in that window, and paste in the following custom CSS.
h1, h2, h3, h4, h5, h6 { text-transform: none; }If you only wish to change the h6 elements, then add this instead.
h6 { text-transform: none; } -
In your menu, I see four contact pages. Which one is the one you are wanting to use? By default, the contact forms will be left aligned. We can center everything, but I would need to know which one you are going to use because I’ll have to target that one specifically with the CSS otherwise everything everywhere would be center aligned.
We can change font sizes, which title(s) did you want to change?
-
Hello, the first contact page is the good one. I wasn’t be able to delete the other pages :-(
I’d like to reduce the size of the black box and to move it a little up in order to show the picture without scrolling the mouse and also I need to reduce the size (a little bit) title into the black box
Is possible to change in lowercase also the link up the picture?
thank you -
On the other contact pages, go to Menus and scroll down and open the other three contact pages there and there is a “Remove” link. Click that on each of the ones you wish to delete and then click Save Menu.
This will center align the contact form on the first contact page. Go to Appearance > Customize > CSS, delete all the informational text in that window, and paste in the following custom CSS.
.page-id-681 .entry-content { text-align: center; }For the space at the top, add the following to your custom CSS and adjust the 300px min-height as you desire.
.has-custom-header.but-no-site-title .site-branding { min-height: 300px; }For the black background on the page title, add the following and adjust the 0.75em value in the padding declaration as desired.
.single-page .entry-title { padding: 0.75em 0; }Is possible to change in lowercase also the link up the picture?
Are you talking about in the menu where you have everything listed? If so, then add the following.
.main-navigation a { text-transform: none; }If that is not what you meant, please let me know and point me to the text you wish to change.
-
ok now is perfect…..How can adjust the size of the title?
thankk you for your support
Cheers -
-
Giorgio, for the background color on the page titles, add the following and adjust the color as desired.
.single-page .entry-header { background-color: #222; }For the size of the page title text, add this and adjust.
.entry-title, .entry-title a { font-size: 2.333em; } -
Perfect!!
And how to reduce the lenght of the box’title
thank you in advanced
Cheers,
giorgio -
Modify this rule I gave you before so that it looks like this, or replace it with this.
.single-page .entry-header { background-color: #444; margin-left: auto; margin-right: auto; width: 660px; }This sets the entry header div at the same width as the content div.
I used the web inspector built into my browser to find the relevant CSS. If you are not familiar with the web inspector in your browser, take a look at our support page on How to Find Your Theme’s CSS where you will find some brief screencasts to get you started with it. I find it an invaluable tool when working with CSS.
-
Instead of the above, let’s change that a little and use this instead.
.single-page .entry-header { background-color: #444; max-width: 660px; margin-left: auto; margin-right: auto; width: 100%; } -
margin leftright “auto” is a number or what?
example: I’d like the box the same dimension of the picturethanks a lot
giorgio -
I can center the lenght box like the picture but what about the title? The title it doesn’t center anymore
-
Giorgio, find this rule in your CSS and add the width: auto; to it so it looks like this.
.single-page .entry-title { padding: 0.2em 0; width: auto; }auto on the left/right margins centers that div in the parent element.
-
The contact page online is perfect, the box is aligned at the center. The others page you can remove
Da: WordPress.com Support Forums [mailto:(email visible only to moderators and staff)] Inviato: sabato 6 febbraio 2016 04:09A: (email visible only to moderators and staff): [WordPress.com Forums] SOME QUESTIONS TOGHETER
thesacredpath replied to a forum topic that you subscribe to
in response to the topic “SOME QUESTIONS TOGHETER”:
In your menu, I see four contact pages. Which one is the one you are wanting to use? By default, the contact forms will be left aligned. We can center everything, but I would need to know which one you are going to use because I’ll have to target that one specifically with the CSS otherwise everything everywhere would be center aligned.
We can change font sizes, which title(s) did you want to change?
Reply View forum topic
Want less email? Unsubscribe from this topic
Thanks for flying with WordPress.com
-
the contacts page good is the page online, i Think it’s the first one
Sorry but I’m not able to delete the others one
The same for “biografia” 3 pages
I’ve tried your suggestion but I see again the pages in the black menu on the right -
I’d like to change all the fonte size of the title in the box (a little bit) in each page
-
I’ve removed the duplicate menu entries for you.
For the page title font sizes, we had added this rule to your CSS, which you can use to adjust the page titles.
.entry-title, .entry-title a { font-size: 1.6em; }Find that in your CSS and then adjust the 1.6em value as desired.
-
Hi all,
is possible in my home page to center align the condivisions (facebook etc etc etc ) and put all the box on the same line ?
thank youBest regards,
giorgio -
Hello,
in my home I don’t want the underline in Biografy, contactcs and Pittura. How to get rid of it?
- The topic ‘SOME QUESTIONS TOGHETER’ is closed to new replies.