Change Goran "Read More" Tag
-
Hi! Is it possible to change the “Read More” with CSS in Goran Theme? Thank you.
The blog I need help with is: (visible only to logged in users)
-
CSS can only used to change styles. So you cannot change any text. At best, you can hide it.
-
Sometimes the text is within a span tag and we can hide the text and then use the :before or :after pseudo selector to replace the text, but Goran has it directly in HTML link code, so as staff-happychia says, we can’t do it in this case.
-
-
-
-
Please need help again with CSS and the theme I’m using is the Goran theme:
1. When I ‘Set Featured Image’ for the Front Page, it cuts off the image as you can see on the site (the lifted foot is cut off) no matter how I reduce or increase the image.
2. For the side widgets, can I reduce the gap between each widgets?
3. On the Landing Page, can I reduce the white space between the “Front Page”, “Grid Page” and so on?
4. The gray line between the grid page and the widget below, can I change the color too?
5 Last question? In “Customize”, When adding a new css code, do you just continue on the next line?
Really battling with learning how to use css but one step at a time. Thank you for any help!
-
-
1. When I ‘Set Featured Image’ for the Front Page, it cuts off the image as you can see on the site (the lifted foot is cut off) no matter how I reduce or increase the image.
The following will shift the image to the right so that the foot and show is visible. It targets only the home page featured image.
.home.hero-image .hero { background-position: left 50%; }2. For the side widgets, can I reduce the gap between each widgets?
Give the following a try. There is both a top and bottom margin on the widgets.
.archive .hentry, .blog .hentry, .search .hentry, .content-area, .featured-page, .featured-page-area, .footer-widget-area, .front-page-widget-area, .grid, .grid-wrapper, .widget, .widget-area { padding-top: 24px; } .archive .hentry, .blog .hentry, .search .hentry, .content-area, .featured-page, .featured-page-area, .footer-widget-area, .front-page-widget-area, .grid, .grid-wrapper, .widget, .widget-area { padding-top: 24px; } .widget { padding-bottom: 24px; }3. On the Landing Page, can I reduce the white space between the “Front Page”, “Grid Page” and so on?
Add the following and adjust the 24px value.
.featured-page { padding-bottom: 24px; }The following will let you adjust the space between the featured image and the first row of featured images.
.featured-page-area { padding-top: 72px; }This will adjust the space at the top of the front page widgets.
.front-page-widget-area { padding-top: 72px; }4. The gray line between the grid page and the widget below, can I change the color too?
Adjust the hex color number in the following.
.has-quinary .featured-page-area { border-bottom: 2px solid #d2cfcf; }5 Last question? In “Customize”, When adding a new css code, do you just continue on the next line?
Take a look at our CSS Basics support page for more on the structure of CSS.
-
Wow! Thanks theSacredPath! Look forward to the day that I will be able to write codes like that!
For No. 2, the css below worked for the widget area but it tampered with the Front Page and shifted the “Shop Shoes” up.
.archive .hentry, .blog .hentry, .search .hentry, .content-area, .featured-page, .featured-page-area, .footer-widget-area, .front-page-widget-area, .grid, .grid-wrapper, .widget, .widget-area {
padding-top: 24px;
}
.archive .hentry, .blog .hentry, .search .hentry, .content-area, .featured-page, .featured-page-area, .footer-widget-area, .front-page-widget-area, .grid, .grid-wrapper, .widget, .widget-area {
padding-top: 24px;
}
.widget {
padding-bottom: 24px;
}Sorry for all the questions. Thank you for your plenty help. understanding it as I go along.
-
3. Did you mean that I should change the 24px value in the code below to whatever value I want it to be
.featured-page {
padding-bottom: 24px;
} -
-
-
Hi everybody,
I’m sorry but I’m quite “new” to CSS, HTML and stuff like that :|
In the beginning of this topics chaitanyamsv says that it’s possible to hide the “read more” button… How can I do that?!
Thanks!! -
To hide the Read More button on Goran, you can use the following CSS.
.entry-summary .more-link { display: none; } -
Thank you so much thesacredpath.
Just one another question: in the grid page, below each featured image of the child pages you see the text of them… I’d like not to show such text in the grid page. Is it possible?
-
To get rid of the summary text in the grid page, you can use the following CSS.
.grid .entry-summary { display: none; } -
-
- The topic ‘Change Goran "Read More" Tag’ is closed to new replies.